UNPKG

@userfrosting/sprinkle-core

Version:
15 lines (14 loc) 283 B
/** * Interfaces - What the API expects and what it returns * * Generic API Response interface. */ export interface ApiResponse { title: string; description?: string; } export interface ApiErrorResponse { title: string; description: string; status: number; }