UNPKG

@dpkit/inline

Version:

Data Package implementation in TypeScript.

9 lines (8 loc) 367 B
import type { Resource } from "@dpkit/core"; import type { LoadTableOptions } from "@dpkit/table"; import type { TablePlugin } from "@dpkit/table"; export declare class InlinePlugin implements TablePlugin { loadTable(resource: Resource, options?: LoadTableOptions): Promise<import("nodejs-polars").LazyDataFrame<{ [x: string]: any; }> | undefined>; }