@geogirafe/lib-geoportal
Version:
GeoGirafe is a flexible application to build online geoportals.
13 lines (12 loc) • 360 B
TypeScript
import ThemeLayer from './layers/themelayer';
import { SharedLayer } from '../tools/share/sharedstate';
export default class CustomTheme {
id: number;
layers: ThemeLayer[];
name: string;
icon: string;
get hasThemes(): boolean;
constructor(name: string);
getSerialized(): SharedLayer[];
getThemeLayer(id?: number): ThemeLayer;
}