@altostra/core
Version:
Core library for shared types and logic
6 lines (5 loc) • 353 B
TypeScript
import { UserFacingError } from "../../../common/Errors";
export * from "./PaymentsService";
export * from "./consts";
export { SubscriptionInfo, SubscriptionStatus, PaymentInfo, CreateSubscriptionPaymentOptions, CreateSubscriptionResponse, } from "./Types";
export declare function isQuotaViolationError(error: unknown): error is UserFacingError<any>;