dpkit
Version:
Fast TypeScript data management framework built on top of the Data Package standard and Polars DataFrames
44 lines (43 loc) • 5.52 kB
TypeScript
import type { FieldType } from "@dpkit/all";
import { Option } from "commander";
export declare const schema: Option<"--schema <schema>", undefined, undefined, undefined, false, undefined>;
export declare const sampleRows: Option<"--sample-rows <sampleRows>", undefined, undefined, number, false, undefined>;
export declare const confidence: Option<"--confidence <confidence>", undefined, undefined, number, false, undefined>;
export declare const commaDecimal: Option<"--comma-decimal", undefined, undefined, undefined, false, undefined>;
export declare const monthFirst: Option<"--month-first", undefined, undefined, undefined, false, undefined>;
export declare const keepStrings: Option<"--keep-strings", undefined, undefined, undefined, false, undefined>;
export declare const fieldNames: Option<"--field-names <fieldNames>", undefined, undefined, string[], false, undefined>;
export declare const fieldTypes: Option<"--field-types <fieldTypes>", undefined, undefined, Record<string, FieldType>, false, undefined>;
export declare const missingValues: Option<"--missing-values <missingValues>", undefined, undefined, string[], false, undefined>;
export declare const stringFormat: Option<"--string-format <stringFormat>", undefined, undefined, undefined, false, "email" | "uri" | "binary" | "uuid">;
export declare const decimalChar: Option<"--decimal-char <decimalChar>", undefined, undefined, undefined, false, undefined>;
export declare const groupChar: Option<"--group-char <groupChar>", undefined, undefined, undefined, false, undefined>;
export declare const bareNumber: Option<"--bare-number <bareNumber>", undefined, undefined, boolean, false, undefined>;
export declare const trueValues: Option<"--true-values <trueValues>", undefined, undefined, string[], false, undefined>;
export declare const falseValues: Option<"--false-values <falseValues>", undefined, undefined, string[], false, undefined>;
export declare const datetimeFormat: Option<"--datetime-format <datetimeFormat>", undefined, undefined, undefined, false, undefined>;
export declare const dateFormat: Option<"--date-format <dateFormat>", undefined, undefined, undefined, false, undefined>;
export declare const timeFormat: Option<"--time-format <timeFormat>", undefined, undefined, undefined, false, undefined>;
export declare const arrayType: Option<"--array-type <arrayType>", undefined, undefined, undefined, false, "array" | "list">;
export declare const listDelimiter: Option<"--list-delimiter <listDelimiter>", undefined, undefined, undefined, false, undefined>;
export declare const listItemType: Option<"--list-item-type <listItemType>", undefined, undefined, undefined, false, "string" | "number" | "boolean" | "time" | "integer" | "date" | "datetime">;
export declare const geopointFormat: Option<"--geopoint-format <geopointFormat>", undefined, undefined, undefined, false, "object" | "default" | "array">;
export declare const geojsonFormat: Option<"--geojson-format <geojsonFormat>", undefined, undefined, undefined, false, "default" | "topojson">;
export declare const toSchema: Option<"--to-schema <toSchema>", undefined, undefined, undefined, false, undefined>;
export declare const toFieldNames: Option<"--to-field-names <fieldNames>", undefined, undefined, string[], false, undefined>;
export declare const toFieldTypes: Option<"--to-field-types <fieldTypes>", undefined, undefined, Record<string, FieldType>, false, undefined>;
export declare const toMissingValues: Option<"--to-missing-values <missingValues>", undefined, undefined, string[], false, undefined>;
export declare const toStringFormat: Option<"--to-string-format <stringFormat>", undefined, undefined, undefined, false, "email" | "uri" | "binary" | "uuid">;
export declare const toDecimalChar: Option<"--to-decimal-char <decimalChar>", undefined, undefined, undefined, false, undefined>;
export declare const toGroupChar: Option<"--to-group-char <groupChar>", undefined, undefined, undefined, false, undefined>;
export declare const toBareNumber: Option<"--to-bare-number <bareNumber>", undefined, undefined, boolean, false, undefined>;
export declare const toTrueValues: Option<"--to-true-values <trueValues>", undefined, undefined, string[], false, undefined>;
export declare const toFalseValues: Option<"--to-false-values <falseValues>", undefined, undefined, string[], false, undefined>;
export declare const toDatetimeFormat: Option<"--to-datetime-format <datetimeFormat>", undefined, undefined, undefined, false, undefined>;
export declare const toDateFormat: Option<"--to-date-format <dateFormat>", undefined, undefined, undefined, false, undefined>;
export declare const toTimeFormat: Option<"--to-time-format <timeFormat>", undefined, undefined, undefined, false, undefined>;
export declare const toArrayType: Option<"--to-array-type <arrayType>", undefined, undefined, undefined, false, "array" | "list">;
export declare const toListDelimiter: Option<"--to-list-delimiter <listDelimiter>", undefined, undefined, undefined, false, undefined>;
export declare const toListItemType: Option<"--to-list-item-type <listItemType>", undefined, undefined, undefined, false, "string" | "number" | "boolean" | "time" | "integer" | "date" | "datetime">;
export declare const toGeopointFormat: Option<"--to-geopoint-format <geopointFormat>", undefined, undefined, undefined, false, "object" | "default" | "array">;
export declare const toGeojsonFormat: Option<"--to-geojson-format <geojsonFormat>", undefined, undefined, undefined, false, "default" | "topojson">;