generaltranslation
Version:
A language toolkit for AI developers
23 lines (22 loc) • 429 B
TypeScript
export type DownloadFileBatchOptions = {
timeout?: number;
};
export type BatchDownloadResult = {
translationId: string;
fileName?: string;
success: boolean;
content?: string;
contentType?: string;
error?: string;
};
type File = {
id: string;
fileName: string;
data: string;
metadata: any;
};
export type DownloadFileBatchResult = {
files: File[];
count: number;
};
export {};