TextNode.d.ts 441 B

12345678910
  1. import { CHTMLConstructor } from '../Wrapper.js';
  2. import { StyleList } from '../../../util/StyleList.js';
  3. declare const CHTMLTextNode_base: import("../../common/Wrappers/TextNode.js").TextNodeConstructor & CHTMLConstructor<any, any, any>;
  4. export declare class CHTMLTextNode<N, T, D> extends CHTMLTextNode_base {
  5. static kind: string;
  6. static autoStyle: boolean;
  7. static styles: StyleList;
  8. toCHTML(parent: N): void;
  9. }
  10. export {};