maction.d.ts 736 B

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