mono/packages/fs/dist/errors.d.ts
2025-01-28 06:38:52 +01:00

9 lines
473 B
TypeScript

export declare const exports: {};
export declare const ErrNoFileOrDir: (path: string) => Error;
export declare const ErrCantDelete: (path: string) => Error;
export declare const ErrNotFile: (path: string) => Error;
export declare const ErrNoDirectory: (path: string) => Error;
export declare const ErrDoesntExists: (path: string) => Error;
export declare const ErrDestinationExists: (path: string) => Error;
export declare const ErrIsNotDirectory: (path: string) => Error;