UNPKG

@promptbook/vercel

Version:

Promptbook: Turn your company's scattered knowledge into AI ready books

14 lines (13 loc) 526 B
import type { ParseConfig, UnparseConfig } from 'papaparse'; /** * Settings and configuration options for CSV format handling within the application. */ export type CsvSettings = Pick<ParseConfig & UnparseConfig, 'delimiter' | 'quoteChar' | 'newline' | 'skipEmptyLines'>; /** * Contains configuration options for parsing and generating CSV files, such as delimiters and quoting rules. * * @public exported from `@promptbook/core` */ export declare const MANDATORY_CSV_SETTINGS: Readonly<{ readonly header: true; }>;