You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

LeafNode.d.ts 327B

1234567891011
  1. import { NodeType, Node } from './node';
  2. declare class LeafNode extends Node {
  3. tag: string;
  4. type: NodeType;
  5. data: string;
  6. constructor(tag: string, data: string, type: NodeType);
  7. get hash(): string;
  8. addItem(tag: string, node: Node): void;
  9. }
  10. export default LeafNode;
  11. //# sourceMappingURL=LeafNode.d.ts.map