UNPKG

schema-dts-gen

Version:

Generate TypeScript Definitions for Schema.org Schema

12 lines 405 B
import { Store } from 'n3'; import type { Quad } from 'n3'; /** * Loads schema all Triples from a given Schema file and version. */ export declare function load(url: string): Promise<Store>; /** * does the same as load(), but for a local file */ export declare function loadFile(path: string): Promise<Store>; export declare function process(quads: Quad[]): Store; //# sourceMappingURL=reader.d.ts.map