mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-18 05:50:43 -07:00
7.0.1
This commit is contained in:
Vendored
+3
@@ -0,0 +1,3 @@
|
||||
import IFS from './ifs';
|
||||
declare const _default: IFS;
|
||||
export default _default;
|
||||
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
export default interface IFS {
|
||||
exists: (filepath?: string) => Promise<boolean>;
|
||||
readFile: (filepath: string) => Promise<string>;
|
||||
resolve: (root: string, file: string, ext: string) => string;
|
||||
}
|
||||
Vendored
+3
@@ -0,0 +1,3 @@
|
||||
import IFS from './ifs';
|
||||
declare const fs: IFS;
|
||||
export default fs;
|
||||
Reference in New Issue
Block a user