seyfert
Version:
The most advanced framework for discord bots
39 lines (38 loc) • 1.29 kB
TypeScript
import type { UsingClient } from '../../commands';
import type { APISubscription } from '../../types';
export declare const SUBSCRIPTION_CREATE: (_: UsingClient, data: APISubscription) => {
id: string;
userId: string;
skuIds: string[];
entitlementsIds: string[];
renewalSkuIds: string[] | null;
currentPeriodStart: string;
currentPeriodEnd: string;
status: import("../../types").SubscriptionStatus;
canceledAt: string | null;
country?: string | undefined;
};
export declare const SUBSCRIPTION_UPDATE: (_: UsingClient, data: APISubscription) => {
id: string;
userId: string;
skuIds: string[];
entitlementsIds: string[];
renewalSkuIds: string[] | null;
currentPeriodStart: string;
currentPeriodEnd: string;
status: import("../../types").SubscriptionStatus;
canceledAt: string | null;
country?: string | undefined;
};
export declare const SUBSCRIPTION_DELETE: (_: UsingClient, data: APISubscription) => {
id: string;
userId: string;
skuIds: string[];
entitlementsIds: string[];
renewalSkuIds: string[] | null;
currentPeriodStart: string;
currentPeriodEnd: string;
status: import("../../types").SubscriptionStatus;
canceledAt: string | null;
country?: string | undefined;
};