##// END OF EJS Templates
switched back to dojo-typings module...
switched back to dojo-typings module added skipLibCheck compiler option due to typings sickness prepare for release

File last commit:

r2:8ec37bf1b4d1 default
r4:fc9f82c082ef v1.0.0-rc2 default
Show More
_DialogMixin.d.ts
35 lines | 961 B | video/mp2t | TypeScriptLexer
import { DeclareConstructor } from "dojo/_base/declare";
interface _DialogMixin {
/**
* HTML snippet to show the action bar (gray bar with OK/cancel buttons).
* Blank by default, but used by ConfirmDialog/ConfirmTooltipDialog subclasses.
*/
actionBarTemplate: string;
/**
* Callback when the user hits the submit button.
* Override this method to handle Dialog execution.
*/
execute(formContents?: any): void;
/**
* Called when user has pressed the Dialog's cancel button, to notify container.
*/
onCancel(): void;
/**
* Called when user has pressed the dialog's OK button, to notify container.
*/
onExecute(): void;
}
declare module "dojo/_base/kernel" {
interface Dijit {
_DialogMixin: _DialogMixinConstructor
}
}
type _DialogMixinConstructor = DeclareConstructor<_DialogMixin>;
declare const _DialogMixin: _DialogMixinConstructor;
export = _DialogMixin;