sparnatural
Version:
Visual client-side SPARQL query builder and knowledge graph exploration tool
19 lines (15 loc) • 494 B
text/typescript
import { Pattern } from "sparqljs";
import { AbstractWidget, ValueRepetition, WidgetValue } from "./AbstractWidget";
import HTMLComponent from "../HtmlComponent";
export class NoWidget extends AbstractWidget {
parseInput(): WidgetValue {
throw new Error("Method not implemented.");
}
value: any = null;
constructor(parentComponent: HTMLComponent) {
super("no-widget", parentComponent, null, null, null, null, ValueRepetition.SINGLE);
}
render() {
return this;
}
}