UNPKG

@visactor/react-vtable

Version:
12 lines (11 loc) 394 B
import React from 'react'; import type { CustomRenderFunctionArg } from '@visactor/vtable/es/ts-types'; type CustomLayoutProps = { componentId: string; }; export type CustomLayoutFunctionArg = Partial<CustomRenderFunctionArg> & { role?: 'custom-layout' | 'header-custom-layout'; renderDefault?: boolean; }; export declare const CustomLayout: React.FC<CustomLayoutProps>; export {};