Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -7937,7 +7937,7 @@
/types/token-introspection/ @DanielRose
/types/token-stream/ @MaikoTan
/types/tokgen/ @l-jonas
/types/tonic-ui__react/ @derekhawker @ZachLegros
/types/tonic-ui__react/ @derekhawker @ZachLegros @georgids9
/types/tonic-ui__react-icons/ @ZachLegros @derekhawker
/types/toobusy-js/ @atd-schubert @BendingBender
/types/tooltipster/ @stephenlautier @pjmagee @VorobeY1326 @leonard-thieu @janhi @joeskeen
Expand Down
8 changes: 4 additions & 4 deletions types/mapbox__mapbox-sdk/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2156,17 +2156,17 @@ declare module "@mapbox/mapbox-sdk/services/tilequery" {
*/
geometry?: GeometryType | undefined;
/**
* A comma-separated list of bands to query, rather than querying all bands.
* An array of bands to query, rather than querying all bands.
* If a specified layer does not exist, it is skipped.
* If no bands exist, returns an empty `FeatureCollection`.
*/
bands?: string | undefined;
bands?: string[] | undefined;
/**
* A comma-separated list of layers to query, rather than querying all layers.
* An array of layers to query, rather than querying all layers.
* If a specified layer does not exist, it is skipped.
* If no layers exist, returns an empty `FeatureCollection`.
*/
layers?: string | undefined;
layers?: string[] | undefined;
}

interface TileQueryResponseProperty {
Expand Down
4 changes: 2 additions & 2 deletions types/mapbox__mapbox-sdk/mapbox__mapbox-sdk-tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -360,8 +360,8 @@ optimizationService.getOptimization({
radius: 0,
limit: 5,
dedupe: true,
bands: "band1,band2",
layers: "layer1,layer2",
bands: ["band1", "band2"],
layers: ["layer1", "layer2"],
} satisfies TileQueryRequest,
);

Expand Down
4 changes: 2 additions & 2 deletions types/meteor/mongo.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -479,8 +479,8 @@ declare module 'meteor/mongo' {
callbacks: ObserveChangesCallbacks<T>,
options?: { nonMutatingCallbacks?: boolean | undefined },
): Meteor.LiveQueryHandle;
[Symbol.iterator](): Iterator<T>;
[Symbol.asyncIterator](): AsyncIterator<T>;
[Symbol.iterator](): Iterator<U>;
[Symbol.asyncIterator](): AsyncIterator<U>;
}

var ObjectID: ObjectIDStatic;
Expand Down
Loading