smart-column-indenter
Version:
A smart source code indenter that indent the code into columns
18 lines (15 loc) • 424 B
text/typescript
import Token from "../Token";
export default class XmlToken extends Token {
constructor(kind: TokenType, content: string)
{
super(kind, content, 0);
}
}
type TokenType = "start-tag" // <XXX
| "end-tag" // </XXX
| "tag-close" // >
| "attribute"
| "equal"
| "attrivuteValue"
| "innerContent"
;