UNPKG

flydrive

Version:

File storage library with unified API to manage files across multiple cloud storage providers like S3, GCS, R2 and so on

12 lines (11 loc) 224 B
/** * Representation of a directory in the listing * of objects. */ export declare class DriveDirectory { prefix: string; isFile: false; isDirectory: true; name: string; constructor(prefix: string); }