@ulb-darmstadt/shacl-form
Version:
SHACL form generator
13 lines (12 loc) • 699 B
TypeScript
import { Config } from "./config";
import { ShaclProperty } from "./property";
import { ShaclPropertyTemplate } from "./property-template";
import { InputListEntry } from "./theme";
export declare function createLinker(property: ShaclProperty): Promise<HTMLElement | undefined>;
export declare function findLinkCandidates(property: ShaclProperty): InputListEntry[];
export declare function loadConformingResources(property: ShaclPropertyTemplate): Promise<void>;
export declare function loadResources(ids: Set<string>, addToStore: boolean, config: Config): Promise<{
resourceId: string;
resourceRDF: string;
}[]>;
export declare function loadUnresolvedValues(config: Config): Promise<void>;