llm-ui-objects
Version:
Interactive object components for LLM-powered writing interfaces
15 lines (14 loc) • 935 B
TypeScript
import Cell from './components/Cell/Cell';
import { CellProps } from './components/Cell/Cell.types';
import CellBoard from './components/Cell/CellBoard';
import CellTree from './components/Cell/CellTree';
import CellEditor from './components/Cell/CellEditor';
import Generator from './components/Generator/Generator';
import { GeneratorProps, ParameterProps } from './components/Generator/Generator.types';
import Lens from './components/Lens/Lens';
import { LensProps, GenerationProps } from './components/Lens/Lens.types';
import ListLens from './components/Lens/ListLens';
import SpaceLens from './components/Lens/SpaceLens';
import { ObjectsContext, ObjectsContextProvider } from './context/ObjectsContextProvider';
export type { CellProps, GeneratorProps, ParameterProps, LensProps, GenerationProps };
export { Cell, CellBoard, CellTree, CellEditor, Generator, Lens, ListLens, SpaceLens, ObjectsContext, ObjectsContextProvider };