@ssit-hub/mvp-generate-template
Version:
A beautiful CLI tool to quickly generate MVP project templates with modern frameworks and best practices
21 lines (18 loc) • 311 B
text/typescript
export interface User {
id: number;
name: string;
email: string;
}
export interface ApiResponse<T> {
success: boolean;
data?: T;
error?: string;
message?: string;
count?: number;
}
export interface ErrorResponse {
success: false;
error: string;
message?: string;
details?: string[];
}