UNPKG

@promptbook/remote-server

Version:

It's time for a paradigm shift. The future of software in plain English, French or Latin

14 lines (13 loc) 344 B
import type { ParseConfig, UnparseConfig } from 'papaparse'; /** * @@@ */ export type CsvSettings = Pick<ParseConfig & UnparseConfig, 'delimiter' | 'quoteChar' | 'newline' | 'skipEmptyLines'>; /** * @@@ * * @public exported from `@promptbook/core` */ export declare const MANDATORY_CSV_SETTINGS: Readonly<{ readonly header: true; }>;