/** * To know the status of the background layer */ export type gmfBackgroundlayerStatus = { /** * Is the background layer (potentially) manually set by the user ? */ touchedByUser: boolean; }; export namespace gmfBackgroundlayerStatus { let touchedByUser: boolean; }