UNPKG

universal-fs

Version:

Allows a client or server to access the file system in the current codebase or a different one.

7 lines (5 loc) 121 B
export interface ExistsParams { path: PathLike; options?: Abortable; } export type ExistsReturn = Promise<boolean>;