Skip to content

Commit

Permalink
Correct options on raster source
Browse files Browse the repository at this point in the history
  • Loading branch information
felixpalmer committed Sep 28, 2023
1 parent a9420d9 commit be8c06d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/carto/src/sources/raster-source.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {CartoBaseSource} from './base-source';
import {CartoSourceOptions, CartoTableSourceOptions, TypedSource} from './common';
import {CartoSourceOptions, CartoTilesetSourceOptions, TypedSource} from './common';

export type CartoRasterSourceOptions = CartoSourceOptions & CartoTableSourceOptions;
export type CartoRasterSourceOptions = CartoSourceOptions & CartoTilesetSourceOptions;
type UrlParameters = {name: string};

const CartoRasterSource: TypedSource<CartoRasterSourceOptions> = async function (
Expand Down

0 comments on commit be8c06d

Please sign in to comment.