maction.d.ts 754 B

123456789101112
  1. import { CHTMLWrapper, CHTMLConstructor } from '../Wrapper.js';
  2. import { EventHandler } from '../../common/Wrappers/maction.js';
  3. import { StyleList } from '../../../util/StyleList.js';
  4. declare const CHTMLmaction_base: import("../../common/Wrappers/maction.js").MactionConstructor<CHTMLWrapper<any, any, any>> & CHTMLConstructor<any, any, any>;
  5. export declare class CHTMLmaction<N, T, D> extends CHTMLmaction_base {
  6. static kind: string;
  7. static styles: StyleList;
  8. static actions: Map<string, [import("../../common/Wrappers/maction.js").ActionHandler<CHTMLmaction<any, any, any>>, import("../../common/Wrappers/maction.js").ActionData]>;
  9. toCHTML(parent: N): void;
  10. setEventHandler(type: string, handler: EventHandler): void;
  11. }
  12. export {};