filmout_manager/dist/files/index.d.ts

17 lines
428 B
TypeScript
Raw Normal View History

interface SequenceObject {
path: string;
hash: string;
name: string;
}
interface VideoObject {
path: string;
hash: string;
name: string;
}
export declare class Files {
static exists(path: string): Promise<boolean>;
static enumerateSequences(path: string): Promise<SequenceObject[]>;
static enumerateVideos(path: string): Promise<VideoObject[]>;
}
export type { SequenceObject, VideoObject };