@selenite/graph-editor
Version:
A graph editor for visual programming, based on rete and svelte.
10 lines (9 loc) • 343 B
TypeScript
type Props = {
data: InputControl<InputControlType>;
focus?: boolean;
inputTextSize?: string;
};
import { InputControl, type InputControlType } from '../../../../../socket';
declare const InputControl: import("svelte").Component<Props, {}, "data">;
type InputControl = ReturnType<typeof InputControl>;
export default InputControl;