Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
14 lines
682 B
Plaintext
14 lines
682 B
Plaintext
import { DirectusFile } from "../../../schema/file.cjs";
|
|
import { Query } from "../../../types/query.cjs";
|
|
import { RestCommand } from "../../types.cjs";
|
|
|
|
//#region src/rest/commands/utils/export.d.ts
|
|
type FileFormat = 'csv' | 'csv_utf8' | 'json' | 'xml' | 'yaml';
|
|
/**
|
|
* Export a larger data set to a file in the File Library
|
|
* @returns Nothing
|
|
*/
|
|
declare const utilsExport: <Schema, TQuery extends Query<Schema, Schema[Collection]>, Collection extends keyof Schema>(collection: Collection, format: FileFormat, query: TQuery, file: Partial<DirectusFile<Schema>>) => RestCommand<void, Schema>;
|
|
//#endregion
|
|
export { FileFormat, utilsExport };
|
|
//# sourceMappingURL=export.d.cts.map |