UNPKG

@alitajs/antd-plus

Version:

基于 ant-design 封装的偏业务组件

11 lines (10 loc) 306 B
import { FC, ReactNode } from 'react'; import Policy from '@pansy/policy'; import { Authority } from './check-authority'; export interface AuthorizedProps { authority?: Authority; noMatch?: ReactNode; policy?: Policy; } declare const Authorized: FC<AuthorizedProps>; export default Authorized;