UNPKG

@antdp/authorized

Version:

通过判断是否进入主界面还是登录界面。

11 lines (10 loc) 417 B
import React from 'react'; export interface AuthorizedConfigProviderProps { auth_menu?: string; auth_btn?: string; auth_check_url?: string; isCheckAuth?: boolean; children?: React.ReactNode; } export declare const AuthorizedConfigProvider: (props: AuthorizedConfigProviderProps) => React.JSX.Element; export declare const useAuthorizedonfig: () => Omit<AuthorizedConfigProviderProps, "children">;