mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-15 12:20:40 -07:00
10 lines
220 B
TypeScript
10 lines
220 B
TypeScript
export default class Token {
|
|
type: string;
|
|
line: number;
|
|
raw: string;
|
|
input: string;
|
|
file: string;
|
|
value: string;
|
|
constructor(raw: any, pos: any, input: any, file: any, line: any);
|
|
}
|