createComponentBuilder
export declare function createComponentBuilder<T extends keyof MappedComponentTypes>(data: (APIModalComponent | APIMessageComponent) & {
type: T;
}): MappedComponentTypes[T];
export declare function createComponentBuilder<T extends keyof MappedComponentTypes>(data: (APIModalComponent | APIMessageComponent) & {
type: T;
}): MappedComponentTypes[T];
Factory for creating components from API data.
Name | Constraints | Optional | Default | Description |
---|---|---|---|---|
T | keyof MappedComponentTypes | No | The type of component to use |
Name | Type | Optional | Description |
---|---|---|---|
data | (APIModalComponent | APIMessageComponent) & { type: T; } | No | The API data to transform to a component class |