@geogirafe/lib-geoportal
Version:
GeoGirafe is a flexible application to build online geoportals.
22 lines (21 loc) • 625 B
TypeScript
import GirafeHTMLElement from '../../base/GirafeHTMLElement';
declare class HelpComponent extends GirafeHTMLElement {
template: () => import("uhtml").Hole;
content: HTMLElement;
themes: HTMLElement;
search: HTMLElement;
menu: HTMLElement;
basemap: HTMLElement;
userPreferences: HTMLElement;
darkFrontendMode: boolean;
arrowBlack: string;
arrowWhite: string;
currentArrow?: string;
constructor();
render(): void;
registerEvents(): void;
changeArrowColor(): void;
toggleHelp(visible: boolean): void;
connectedCallback(): void;
}
export default HelpComponent;