mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-10 09:52:00 +00:00
9 lines
155 B
TypeScript
9 lines
155 B
TypeScript
export interface SubscriptionPayload {
|
|
lemonSqueezyId?: string;
|
|
}
|
|
|
|
export enum SubscriptionPaymentStatus {
|
|
Succeed = 'succeed',
|
|
Failed = 'failed',
|
|
}
|