mono/packages/osrl/lib/fs.d.ts
2025-12-30 16:33:03 +01:00

11 lines
599 B
TypeScript

export { sync as read } from '@plastichub/fs/read';
export { sync as exists } from '@plastichub/fs/exists';
export { sync as dir } from '@plastichub/fs/dir';
export { sync as write } from '@plastichub/fs/write';
export declare const sizeToString: (bytes: number, si?: boolean) => string;
export declare const getExtensions: (glob: string) => any[];
export declare const isFile: (src: string) => boolean;
export declare const isFolder: (src: string) => boolean;
export declare const files: (dir: any, glob: any, options?: any) => [];
export declare const forward_slash: (path: any) => any;