@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
28 lines • 772 B
TypeScript
export default ConfirmationDialogView;
/**
* ~Option
*/
export type ConfirmationDialogView = {
name: string;
displayName: string;
callback: Function;
enabled?: ObservedBoolean | ReactiveExpression;
};
/**
* @typedef {Object} ConfirmationDialogView~Option
* @property {string} name
* @property {string} displayName
* @property {function} callback
* @property {ObservedBoolean|ReactiveExpression} [enabled]
*/
declare class ConfirmationDialogView extends View<HTMLElement> {
/**
* @param {View} content
* @param {Array.<ConfirmationDialogView~Option>} options
* @constructor
*/
constructor(content: View, options: any);
el: Element;
}
import View from "../View.js";
//# sourceMappingURL=ConfirmationDialogView.d.ts.map