Files
liquidjs/src/fs/ifs.ts
T
2019-02-23 00:49:54 +08:00

6 lines
194 B
TypeScript

export default interface IFS {
exists: (filepath: string) => Promise<boolean>
readFile: (filepath:string) => Promise<string>
resolve: (root: string, file: string, ext: string) => string
}