mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-18 22:10:41 -07:00
feat: with & for in render tag, closes #195
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
export interface FS {
|
||||
exists: (filepath: string) => Promise<boolean>;
|
||||
readFile: (filepath: string) => Promise<string>;
|
||||
existsSync: (filepath: string) => boolean;
|
||||
readFileSync: (filepath: string) => string;
|
||||
resolve: (root: string, file: string, ext: string) => string;
|
||||
fallback?: (file: string) => string | undefined;
|
||||
}
|
||||
Reference in New Issue
Block a user