S SmartDocs
Series: angular typescript 8 lines · Updated 2026-02-03

projects.models.ts

angular/examples/advanced/src/app/state/projects.models.ts

// @ts-nocheck
export interface Project {
  id: string;
  name: string;
  status: 'draft' | 'active' | 'archived';
  budget?: number;
  tenantId: string;
}

Related articles