// 接口名称约定以 I 开头interface IUser { name: string age: number}const mu: IUser = { name: 'yingximu', age: 18,}const ying: IUser = { name: '沐颖汐', age: 19,}