export interface IRunnerAttachments { /** Fetch an attachment from the store. */ readonly get: (file: string) => Promise; /** Put an attachment in the store. */ readonly put: ( file: File, onProgress?: (percentage: number) => void ) => Promise; /** Delete an attachment from the store. */ readonly delete: (file: string) => Promise; }