UNPKG

@dpkit/core

Version:

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

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