/** * Serializer for SPA (Single Page Application) */ export type Spa = { readonly id: number; /** * SPA identifier (e.g. skills, mentor, admin) */ name: string; /** * Human-friendly description of the SPA */ description?: string; };