UNPKG

cecon-interfaces

Version:
18 lines (17 loc) 443 B
import { EIntervalType } from '../../general/enums'; import { EPlanIdentifier } from '../enums'; import { IPlanFeature } from './i-feature'; export interface IPlan { createdAt: Date; features: IPlanFeature[]; id: string; identifier: EPlanIdentifier; index: number; interval: number; intervalType: EIntervalType; tags: string[]; name: string; trialDays: number; price: number; updatedAt: Date; }