summaryrefslogtreecommitdiff
path: root/node_modules/posthtml-parser/dist/index.d.ts
blob: 339f8d6a98fafc71b713d76a702f87b99bbb16ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import { ParserOptions } from 'htmlparser2';
import { SourceLocation } from './location-tracker';

declare type Directive = {
    name: string | RegExp;
    start: string;
    end: string;
};
declare type Options = {
    directives?: Directive[];
    sourceLocations?: boolean;
    recognizeNoValueAttribute?: boolean;
} & ParserOptions;
declare type Tag = string | boolean;
declare type Attributes = Record<string, string | number | boolean>;
declare type Content = NodeText | Array<Node | Node[]>;
declare type NodeText = string | number;
declare type NodeTag = {
    tag?: Tag;
    attrs?: Attributes;
    content?: Content;
    location?: SourceLocation;
};
declare type Node = NodeText | NodeTag;
declare const parser: (html: string, options?: Options) => Node[];

export { Attributes, Content, Directive, Node, NodeTag, NodeText, Options, Tag, parser };