/* 属性名不确定的对象 */
export type Params = {
[key: string]: string;
};
// 等同于// export type Params = Record<string, string>;
const params : Params = {};
= '/home'; //OK
= '/settings'; //OK
= '/somePath'; //OK
/* 属性名不确定的对象 */
export type Params = {
[key: string]: string;
};
// 等同于// export type Params = Record<string, string>;
const params : Params = {};
= '/home'; //OK
= '/settings'; //OK
= '/somePath'; //OK