Files
tsclass/ts/business/company.ts

21 lines
455 B
TypeScript
Raw Normal View History

2022-04-28 12:18:26 +02:00
import { business, general } from '../index.js';
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;
2023-05-08 16:45:59 +02:00
slogan?: string;
description?: string;
logoLink?: 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
}