UNPKG

@promptbook/remote-client

Version:

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

13 lines (12 loc) 534 B
import type { ParseResult } from 'papaparse'; import type { TODO_any } from '../../../utils/organization/TODO_any'; import type { Parameters } from '../../../types/typeAliases'; import type { CsvSettings } from '../CsvSettings'; /** * Converts a CSV string into an object * * Note: This is wrapper around `papaparse.parse()` with better autohealing * * @private - for now until `@promptbook/csv` is released */ export declare function csvParse(value: string, settings?: CsvSettings, schema?: TODO_any): ParseResult<Parameters>;