mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-16 12:50:38 -07:00
refactor: strictly typed
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
import DelimitedToken from './delimited-token'
|
||||
|
||||
export default class OutputToken extends DelimitedToken {
|
||||
constructor (raw, value, pos, input, file, line) {
|
||||
super(raw, value, pos, input, file, line)
|
||||
constructor (raw: string, value: string, input: string, line: number, pos: number, file?: string) {
|
||||
super(raw, value, input, line, pos, file)
|
||||
this.type = 'output'
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user