UNPKG

@sourceloop/ctrl-plane-subscription-service

Version:

Subscription management microservice for SaaS control plane.

10 lines (9 loc) 250 B
import { Entity } from '@loopback/repository'; export declare class Currency extends Entity { id: string; currencyCode: string; currencyName: string; symbol?: string; country?: string; constructor(data?: Partial<Currency>); }