Skip to content

Commit

Permalink
fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
rkettelerij committed Oct 2, 2023
1 parent f237025 commit ed5307c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export interface IProperties {
}

export type LegendItem = {
sourceLayer: any;
sourceLayer: unknown;
name: string;
title: string;
geoType: LayerType;
Expand Down
2 changes: 1 addition & 1 deletion webcomponents/vectortile-view-component/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ import { AppModule } from './app/app.module';

platformBrowserDynamic()
.bootstrapModule(AppModule)
.catch((err: any) => console.error(err));
.catch((err: unknown) => console.error(err));

0 comments on commit ed5307c

Please sign in to comment.