Files
tsclass/ts/business/company.ts

18 lines
382 B
TypeScript
Raw Normal View History

2020-01-19 10:19:38 +00:00
import { business, general } from '..';
2017-03-16 14:47:43 +01:00
/**
* describes a company's lifecycle state
*/
2018-06-09 15:11:37 +02:00
export type TCompanyStatus = 'planed' | 'founding' | 'active' | 'liquidation' | 'closed';
2017-03-16 14:47:43 +01:00
/**
* describes a company
*/
export interface ICompany {
2018-06-09 15:11:37 +02:00
name: string;
2020-01-19 10:19:38 +00:00
foundedDate: general.IDate;
closedDate: general.IDate;
status: business.TCompanyStatus;
contact: business.IContact;
2017-03-16 14:47:43 +01:00
}