File size: 712 Bytes
bc20498
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import type { BaseNode } from "./base";
export interface Position {
    /** >= 1 */
    line: number;
    /** >= 0 */
    column: number;
}
export type Range = [number, number];
export interface SourceLocation {
    start: Position;
    end: Position;
}
export interface Locations {
    loc: SourceLocation;
    range: Range;
}
export interface Token extends BaseNode {
    type: "Boolean" | "Null" | "Identifier" | "Keyword" | "Punctuator" | "JSXIdentifier" | "JSXText" | "Numeric" | "String" | "RegularExpression" | "Template" | "HTMLText" | "HTMLIdentifier" | "MustacheKeyword" | "HTMLComment";
    value: string;
}
export interface Comment extends BaseNode {
    type: "Line" | "Block";
    value: string;
}