0091ef5f6c
as title, upload built files to local storage --------- Co-authored-by: Charles Bochet <charles@twenty.com>
16 lines
384 B
TypeScript
16 lines
384 B
TypeScript
import { type FrontComponentManifest } from 'twenty-shared/application';
|
|
|
|
export type FrontComponentType = React.ComponentType<any>;
|
|
|
|
export type FrontComponentConfig = Omit<
|
|
FrontComponentManifest,
|
|
| 'sourceComponentPath'
|
|
| 'builtComponentPath'
|
|
| 'builtComponentChecksum'
|
|
| 'componentName'
|
|
> & {
|
|
name?: string;
|
|
description?: string;
|
|
component: FrontComponentType;
|
|
};
|