import { ApplicationType, Operation, OperationOptions, ProcessType, StoredFiles } from '@modfy/interfaces'; export default interface OperationInterface { setup: (processType: ProcessType) => Promise; inputFiles: StoredFiles; ffmpegInputArguments: Array; ffmpegArguments: Array; ffmpegOutputArugments?: Array; outputFile: string; serverOperationJson: Operation; applicationType: ApplicationType; setInputArguments: () => void; setFFmpegArguments: (...args: any[]) => void; setServerOperation: (...args: any[]) => void; }