UNPKG

smoosic

Version:

<sub>[Github site](https://github.com/Smoosic/smoosic) | [source documentation](https://smoosic.github.io/Smoosic/release/docs/modules.html) | [change notes](https://aarondavidnewman.github.io/Smoosic/changes.html) | [application](https://smoosic.github.i

23 lines 617 B
/** * @internal */ export interface HtmlHelpBlock { title: string; html: string; index: number; } export type HelpMode = 'cards' | 'expand'; /** * @category SuiDialog */ export declare class SuiHelp { static helpMode: HelpMode; static created: boolean; static currentCard: number; static displayHelp(): void; static setCards(): void; static get closeButton(): import("../common/htmlHelpers").DomBuilder; static _buildElements(helps: HtmlHelpBlock): import("../common/htmlHelpers").DomBuilder; static get helpHtml(): HtmlHelpBlock[]; } //# sourceMappingURL=help.d.ts.map