个人网站导航页
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
311 B

2 years ago
/*类型命名建议以Ty结尾*/
/*
*
WangMeng
wangMeng
* */
/*通用对象*/
interface ObjTy {
[propName: string]: any;
}
/* ant select组件 options 参数类型 */
type IOptions<T = number> = Array<{
label: string;
value: T;
}>;