UNPKG

react-application-core

Version:

A react-based application core for the business applications.

9 lines (8 loc) 397 B
import { IRouteEntity } from './router-definition.interface'; import { IAccessConfigurationWrapper, IContainerWrapper } from '../definitions.interface'; import { IContainerProps } from './props-definition.interface'; /** * @stable [16.11.2019] */ export interface IBaseRootContainerProps extends IContainerProps, IRouteEntity, IAccessConfigurationWrapper<{}>, IContainerWrapper<any> { }