@visactor/openinula-vtable
Version:
The openinula version of VTable
11 lines (10 loc) • 398 B
TypeScript
import Inula from 'openinula';
export interface BaseComponentProps {
id?: string | number;
}
type ComponentProps = BaseComponentProps & {
updateId?: number;
componentId?: number;
};
export declare const createComponent: <T extends ComponentProps>(componentName: string, optionName: string, supportedEvents?: Record<string, string> | null, isSingle?: boolean) => Inula.FC<T>;
export {};