mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-16 12:50:38 -07:00
6 lines
210 B
TypeScript
6 lines
210 B
TypeScript
export default interface IFS {
|
|
exists: (filepath?: string) => Promise<boolean>;
|
|
readFile: (filepath: string) => Promise<string>;
|
|
resolve: (root: string, file: string, ext: string) => string;
|
|
}
|