Flyweight DOM - v2.3.0
    Preparing search index...

    Interface NodeFactories

    interface NodeFactories {
        cdata(data?: string): CDATASection;
        comment(data?: string): Comment;
        doc(...children: Child[]): Document;
        doctype(name: string, publicId?: string, systemId?: string): DocumentType;
        f(...children: Child[]): DocumentFragment;
        pi(target: string, data?: string): ProcessingInstruction;
    }
    Index

    Methods

    • Parameters

      • Optionaldata: string

      Returns Comment

    • Parameters

      • name: string
      • OptionalpublicId: string
      • OptionalsystemId: string

      Returns DocumentType