Skip to content
This repository has been archived by the owner on Mar 8, 2023. It is now read-only.

Commit

Permalink
MINOR: Fix wrong parameter type in overridden function
Browse files Browse the repository at this point in the history
Signed-off-by: Jonathan Stichbury <2533428+nzjony@users.noreply.github.com>
  • Loading branch information
nzjony authored and atomicsulfate committed Jun 15, 2021
1 parent 0f25c65 commit 8af2813
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion @here/harp-mapview-decoder/lib/ThemedTileDecoder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export abstract class ThemedTileDecoder implements ITileDecoder {
}

decodeTile(
data: ArrayBufferLike,
data: ArrayBufferLike | {},
tileKey: TileKey,
projection: Projection
): Promise<DecodedTile | undefined> {
Expand Down
2 changes: 1 addition & 1 deletion @here/harp-vectortile-datasource/lib/VectorTileDecoder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ export class VectorTileDecoder extends ThemedTileDecoder {

/** @override */
decodeThemedTile(
data: ArrayBufferLike,
data: ArrayBufferLike | {},
tileKey: TileKey,
styleSetEvaluator: StyleSetEvaluator,
projection: Projection
Expand Down

0 comments on commit 8af2813

Please sign in to comment.