Skip to content

Commit

Permalink
fix: set correct type for layerConfig
Browse files Browse the repository at this point in the history
  • Loading branch information
dnlkoch committed Aug 31, 2022
1 parent c0d2292 commit 84514e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/model/Application.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export interface ApplicationArgs extends BaseEntityArgs {
stateOnly?: boolean;
clientConfig?: DefaultApplicationClientConfig;
layerTree?: DefaultLayerTree;
layerConfig?: DefaultApplicationLayerConfig;
layerConfig?: DefaultApplicationLayerConfig[];
toolConfig?: DefaultApplicationToolConfig[];
}

Expand All @@ -56,7 +56,7 @@ export default class Application extends BaseEntity {
stateOnly?: boolean;
clientConfig?: DefaultApplicationClientConfig;
layerTree?: DefaultLayerTree;
layerConfig?: DefaultApplicationLayerConfig;
layerConfig?: DefaultApplicationLayerConfig[];
toolConfig?: DefaultApplicationToolConfig[];

constructor({
Expand Down

0 comments on commit 84514e0

Please sign in to comment.