ra-core
Version:
Core components of react-admin, a frontend Framework for building admin applications on top of REST services, using ES6, React
12 lines • 524 B
TypeScript
import { ComponentType } from 'react';
import { AdminChildren, CatchAllComponent, LayoutComponent, LoadingComponent, CoreLayoutProps } from '../types';
export declare const CoreAdminRoutes: (props: CoreAdminRoutesProps) => JSX.Element;
export interface CoreAdminRoutesProps extends CoreLayoutProps {
layout: LayoutComponent;
catchAll: CatchAllComponent;
children?: AdminChildren;
loading: LoadingComponent;
requireAuth?: boolean;
ready?: ComponentType;
}
//# sourceMappingURL=CoreAdminRoutes.d.ts.map