UNPKG

@wulperstudio/cms

Version:
10 lines (9 loc) 315 B
import { ReactNode, ComponentPropsWithRef } from 'react'; import { Omit } from '../../types'; import { Root } from './styled'; export interface LayoutCrudRightModel { content: ReactNode; drawer?: ReactNode; openDrawer?: boolean; RootProps?: Omit<ComponentPropsWithRef<typeof Root>, 'openDrawer'>; }