UNPKG

create-hest-app

Version:

Create HestJS-powered applications with one command

10 lines (9 loc) 147 B
// 定义用户类型 export interface User { id: number; name: string; email: string; age: number; password?: string; bio?: string; }