prong-editor
Version:
Prong (PRojectional jsON Gui) is an editor framework for creating bespoke in-browser editors for JSON-based domain-specific languages (such as [Vega](https://vega.github.io/vega/), [Vega-Lite](https://vega.github.io/vega-lite/), [Tracery](https://tracery.
6 lines (5 loc) • 386 B
TypeScript
import { SyntaxNode } from "@lezer/common";
import { ProjectionInline } from "../projections";
import { SimpleWidgetStateVersion } from "../widgets";
declare const ProjectionWidgetFactory: (projection: ProjectionInline, currentCodeSlice: string, syntaxNode: SyntaxNode, typings: any, setCode: (code: string) => void) => SimpleWidgetStateVersion;
export default ProjectionWidgetFactory;