springroll-container
Version:
The iframe controller for interacting with SpringRoll applications
16 lines (13 loc) • 406 B
TypeScript
import { ButtonPlugin } from '../base-plugins';
import { Button } from '../ui-elements';
export class HelpPlugin extends ButtonPlugin {
constructor(helpButton: string);
_helpButtons: Button[];
pause: boolean;
helpButtonsLength: number;
get helpEnabled(): boolean;
private _helpEnabled: boolean;
set helpEnabled(enabled: boolean);
helpButtonClick(): void;
onPause($event:object):void;
}