sparnatural
Version:
Visual client-side SPARQL query builder and knowledge graph exploration tool
13 lines • 406 B
JavaScript
import { AbstractWidget, ValueRepetition } from "./AbstractWidget";
export class NoWidget extends AbstractWidget {
constructor(parentComponent) {
super("no-widget", parentComponent, null, null, null, null, ValueRepetition.SINGLE);
}
render() {
return this;
}
parseInput() {
throw new Error("Method not implemented.");
}
}
//# sourceMappingURL=NoWidget.js.map