mtr.d.ts 808 B

1234567891011121314151617
  1. import { CHTMLConstructor, Constructor } from '../Wrapper.js';
  2. import { CHTMLmtd } from './mtd.js';
  3. import { StyleList } from '../../../util/StyleList.js';
  4. declare const CHTMLmtr_base: import("../../common/Wrappers/mtr.js").MtrConstructor<CHTMLmtd<any, any, any>> & CHTMLConstructor<any, any, any>;
  5. export declare class CHTMLmtr<N, T, D> extends CHTMLmtr_base {
  6. static kind: string;
  7. static styles: StyleList;
  8. toCHTML(parent: N): void;
  9. }
  10. declare const CHTMLmlabeledtr_base: import("../../common/Wrappers/mtr.js").MlabeledtrConstructor<CHTMLmtd<any, any, any>> & Constructor<CHTMLmtr<any, any, any>>;
  11. export declare class CHTMLmlabeledtr<N, T, D> extends CHTMLmlabeledtr_base {
  12. static kind: string;
  13. static styles: StyleList;
  14. toCHTML(parent: N): void;
  15. markUsed(): void;
  16. }
  17. export {};