You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
salary-management-oneself/src/layouts/BaseLayout/typings.ts

65 lines
1.6 KiB
TypeScript

3 years ago
import type * as H from 'history';
import type {
RouteComponentProps as BasicRouteProps,
match,
} from 'react-router-dom';
import type React from 'react';
export type LinkProps = {
to: H.LocationDescriptor;
replace?: boolean;
innerRef?: React.Ref<HTMLAnchorElement>;
} & React.AnchorHTMLAttributes<HTMLAnchorElement>;
export type MenuDataItem = {
/** @name 子菜单 */
children?: MenuDataItem[];
/** @name 在菜单中隐藏子节点 */
hideChildrenInMenu?: boolean;
/** @name 在菜单中隐藏自己和子节点 */
hideInMenu?: boolean;
/** @name 菜单的icon */
icon?: React.ReactNode;
/** @name 自定义菜单的国际化 key */
locale?: string | false;
/** @name 菜单的名字 */
name?: string;
/** @name 用于标定选中的值,默认是 path */
key?: string;
/** @name disable 菜单选项 */
disabled?: boolean;
/** @name 路径,可以设定为网页链接 */
path?: string;
/**
* parentKeys
*
* @name
*/
parentKeys?: string[];
/** @name 隐藏自己,并且将子节点提升到与自己平级 */
flatMenu?: boolean;
/** @name 指定外链打开形式同a标签 */
target?: string;
[key: string]: any;
};
export type Route = {
routes?: Route[];
} & MenuDataItem;
export type WithFalse<T> = T | false;
export type RouterTypes<P> = {
computedMatch?: match<P>;
route?: Route;
location: BasicRouteProps['location'] | { pathname?: string };
} & Omit<BasicRouteProps, 'location'>;
export type MessageDescriptor = {
id: any;
description?: string;
defaultMessage?: string;
};