sparnatural
Version:
Visual client-side SPARQL query builder and knowledge graph exploration tool
17 lines (16 loc) • 649 B
TypeScript
import { SelectedVal } from "../SelectedVal";
import { AbstractWidget, WidgetValue } from "./AbstractWidget";
import { HTMLComponent } from '../HtmlComponent';
export declare class BooleanWidgetValue implements WidgetValue {
value: {
label: string;
boolean: boolean;
};
key(): string;
constructor(v: BooleanWidgetValue["value"]);
}
export declare class BooleanWidget extends AbstractWidget {
constructor(parentComponent: HTMLComponent, startClassVal: SelectedVal, objectPropVal: SelectedVal, endClassVal: SelectedVal);
render(): this;
parseInput(input: BooleanWidgetValue["value"]): BooleanWidgetValue;
}