UNPKG

@tsclass/tsclass

Version:

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

11 lines (10 loc) 225 B
/** * a contract event describes any kind of sale */ export interface IEvent_Contract { contractId: string; date: number; enddate: number; product: string; type: 'single purchase' | 'subscription' | 'canceled'; }