UNPKG

@synthart/synthlite

Version:

A fast, lightweight Gen AI powered synthetic data generator written in TypeScript. 🌞

10 lines (9 loc) • 202 B
export interface CLIOptions { verbose: boolean; schema: string; output: string; rows: string; format: OutputFormat; envPath: string; } export type OutputFormat = "json" | "csv";