mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-15 12:20:40 -07:00
10 lines
215 B
TypeScript
10 lines
215 B
TypeScript
import Token from './token'
|
|
|
|
export default class HTMLToken extends Token {
|
|
constructor (str, begin, input, file, line) {
|
|
super(str, begin, input, file, line)
|
|
this.type = 'html'
|
|
this.value = str
|
|
}
|
|
}
|