7 lines
81 B
TypeScript
7 lines
81 B
TypeScript
interface User {
|
|
id: string;
|
|
email: string;
|
|
name: string;
|
|
age: number;
|
|
}
|