UNPKG

@dpkit/core

Version:

Fast TypeScript data management framework built on top of the Data Package standard and Polars DataFrames

9 lines (8 loc) 221 B
import type { Dialect } from "./Dialect.ts"; /** * Save a Dialect to a file path * Works in Node.js environments */ export declare function saveDialect(dialect: Dialect, options: { path: string; }): Promise<void>;