export interface Files { [key: string]: string; } export interface DeployOption { domain: string; files: Files; onProgress?: (data: { id: string; progress: number; file: string; }) => void; onTick?: (tick: string) => void; } export type UploadOption = Pick;