Files
klz-cables.com/.pnpm-store/v10/files/c3/3e88da215a0676d68c5cb1403abb254bd4176b6683d2248e775e8fd28df4ec40cc9709c9c422dd7b4d80c7502cd7f1444a20696f65aa5f609b122bfc94bd39
Marc Mintel 5397309103
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
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

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