Files
liquidjs/dist/fs/ifs.d.ts
T
2019-02-22 19:56:16 +00:00

6 lines
209 B
TypeScript

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