Skip to content

Commit

Permalink
fix: set toolConfig to an array
Browse files Browse the repository at this point in the history
  • Loading branch information
Rui Nunes committed Aug 1, 2022
1 parent 70a9d6d commit 6fe532a
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 @@ -48,7 +48,7 @@ export interface ApplicationArgs extends BaseEntityArgs {
clientConfig?: DefaultApplicationClientConfig;
layerTree?: DefaultLayerTree;
layerConfig?: DefaultApplicationLayerConfig;
toolConfig?: DefaultApplicationToolConfig;
toolConfig?: DefaultApplicationToolConfig[];
}

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

constructor({
id,
Expand Down

0 comments on commit 6fe532a

Please sign in to comment.