UNPKG

smart-column-indenter

Version:

A smart source code indenter that indent the code into columns

16 lines (13 loc) 312 B
export default abstract class Token { public kind: TokenType; public content: string; public level: number; constructor(kind: TokenType, content: string, level: number) { this.kind = kind; this.content = content; this.level = level; } } type TokenType = string;