/** * 基础扩展类型 */ /// export type StringOrNumber = string | number; /** * 字典对象类型 */ export type Dict = { [key: string]: T; }; export type PartialRecord = { [P in K]?: T; }; export interface ReactComponentProps { children?: React.ReactNode; style?: React.CSSProperties; className?: string; }