UNPKG

@experts_hub/shared

Version:

Shared DTOs, interfaces, and utilities for experts hub applications

11 lines (10 loc) 275 B
import { BaseEntity } from "./base.entity"; import { Feature } from './feature.entity'; export declare class Plan extends BaseEntity { name: string; description: string; price: number; billingPeriod: string; isCurrent: boolean; features: Feature[]; }