UNPKG

create-nttb

Version:

An opinionated Next.js, TypeScript, and Tailwind boilerplate using Atomic Design Methodology for presentation components.

17 lines (15 loc) 244 B
/** * Represents a user returned from the API. */ export interface User { id: number; name: string; email: string; } /** * Request body for creating a new user. */ export interface CreateUserBody { name: string; email: string; }