You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
5 lines
301 B
5 lines
301 B
import type { Quad } from "@rdfjs/types";
|
|
import type { ParserOptions as ParserOptionsImport } from "n3";
|
|
export type ParserOptions = ParserOptionsImport;
|
|
export declare function serializedToQuads(data: string, options?: ParserOptions): Promise<Quad[]>;
|
|
//# sourceMappingURL=serializedToQuads.d.ts.map
|