UNPKG

sparnatural

Version:

Visual client-side SPARQL query builder and knowledge graph exploration tool

14 lines 433 B
import { AbstractWidget, ValueRepetition } from "./AbstractWidget"; export class NoWidget extends AbstractWidget { parseInput() { throw new Error("Method not implemented."); } constructor(parentComponent) { super("no-widget", parentComponent, null, null, null, null, ValueRepetition.SINGLE); this.value = null; } render() { return this; } } //# sourceMappingURL=NoWidget.js.map