interface User {
  name: string;
  age: number;
}
const user: User = { name: 'John', age: 30 };
