5 lines
57 B
TypeScript
5 lines
57 B
TypeScript
|
|
export type User = {
|
||
|
|
name: string;
|
||
|
|
email: string;
|
||
|
|
};
|