UNPKG

@signiant/media-shuttle-sdk-base

Version:

The base parent sdk behind other media shuttle sdks (e.g. media-shuttle-sdk)

18 lines 424 B
/** * The top level interface for file interactions. */ export default interface File { /** * The size of the file in bytes. */ fileSize?: number; /** * Whether this file is a folder type, defaults to false. */ isDirectory?: boolean; /** * If it is a video file indicates the duration of the video. If present */ duration?: number; } //# sourceMappingURL=File.d.ts.map