Skip to content

Commit

Permalink
feat: add support for legal information link config
Browse files Browse the repository at this point in the history
  • Loading branch information
mholthausen committed Jan 20, 2023
1 parent f1f0d69 commit 6f6f032
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/model/Application.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,16 @@ export interface DefaultMapView {
projection?: string;
resolutions?: number[];
}
export interface DefaultLegalConfig {
contact?: string;
imprint?: string;
privacy?: string;
}

export interface DefaultApplicationClientConfig {
mapView: DefaultMapView;
description?: string;
legal?: DefaultLegalConfig;
theme?: DefaultApplicationTheme;
}

Expand Down

0 comments on commit 6f6f032

Please sign in to comment.