@start-app/component-palette
Version:
The Startapp.Studio FormBuilder components palette
13 lines (12 loc) • 381 B
TypeScript
/// <reference types="react" />
export interface IPaletteComponentDescriptor {
name: string;
title: string;
group?: string;
element: React.ReactElement<any>;
}
export declare class ComponentPaletteRegistry {
private componentMap;
register(descriptor: IPaletteComponentDescriptor): void;
readonly components: IPaletteComponentDescriptor[];
}