Type alias TransferCommandDTO

TransferCommandDTO: Record<string, any> & {
    transfer: {
        depth?: number;
        fileset?: any[];
        format?: string;
        from: string;
        to: string;
    };
}

Type declaration

  • transfer: {
        depth?: number;
        fileset?: any[];
        format?: string;
        from: string;
        to: string;
    }
    • Optional depth?: number
    • Optional fileset?: any[]
    • Optional format?: string
    • from: string
    • to: string