chore: fix types

This commit is contained in:
Harttle
2021-10-16 22:36:46 +08:00
committed by harttle
parent 8894cbfe6e
commit b5b2a98d5e
3 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ import { FS } from '../fs/fs'
import { toThenable, Thenable } from '../util/async'
export default class Parser {
public parseFile: (file: string, sync?: boolean, type?: LookupType, currentFile?: string) => Iterator<Template[]>
public parseFile: (file: string, sync?: boolean, type?: LookupType, currentFile?: string) => IterableIterator<any>
private liquid: Liquid
private fs: FS