sparnatural
Version:
Visual client-side SPARQL query builder and knowledge graph exploration tool
14 lines (13 loc) • 459 B
TypeScript
import { PlayBtn } from "../buttons/PlayBtn";
import { HTMLComponent } from "../HtmlComponent";
import SparnaturalComponent from "../SparnaturalComponent";
declare class SubmitSection extends HTMLComponent {
playBtn: PlayBtn;
ParentSparnatural: SparnaturalComponent;
constructor(ParentComponent: HTMLComponent);
render(): this;
submitAction: () => void;
enableSubmit(): void;
disableSubmit(): void;
}
export default SubmitSection;