mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-15 20:30:39 -07:00
9 lines
285 B
TypeScript
9 lines
285 B
TypeScript
import DelimitedToken from './delimited-token'
|
|
|
|
export default class OutputToken extends DelimitedToken {
|
|
constructor (raw: string, value: string, input: string, line: number, pos: number, file?: string) {
|
|
super(raw, value, input, line, pos, file)
|
|
this.type = 'output'
|
|
}
|
|
}
|