function createComponentBuilder

export declare function createComponentBuilder<T extends keyof MappedComponentTypes>(data: (APIModalComponent | APIMessageComponent) & {
    type: T;
}): MappedComponentTypes[T];

Factory for creating components from API data.

Type Parameters

T extends keyof MappedComponentTypes

The type of component to use

Parameters

data: (APIModalComponent | APIMessageComponent) & { type: T; }
The API data to transform to a component class