UNPKG

@flatfile/safe-api

Version:

Flatfile Safe API client with streaming capabilities

8 lines (7 loc) 304 B
export type Primitive = string | number | boolean | null | undefined; export interface SimpleRecord { id?: string; metadata?: Record<string, any>; [key: string]: Primitive | Record<string, any> | undefined; } export declare function toSimpleRecord(record: Record<string, any>): SimpleRecord;