UNPKG

141 BTypeScriptView Raw
1export interface Pricing {
2 currency: string;
3 prices: Price[];
4}
5export interface Price {
6 price: number;
7 frequency: string;
8}