UNPKG

@tsclass/tsclass

Version:

Provides TypeScript definitions for various business, financial, networking, content, and other common classes.

19 lines (18 loc) 469 B
import { business, general } from '../index.js'; /** * describes a company's lifecycle state */ export type TCompanyStatus = 'planed' | 'founding' | 'active' | 'liquidation' | 'closed'; /** * describes a company */ export interface ICompany { name: string; slogan?: string; description?: string; logoLink?: string; foundedDate: general.IDate; closedDate: general.IDate; status: business.TCompanyStatus; contact: business.IContact; }