/* * @adonisjs/transmit-client * * (c) AdonisJS * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ export const SubscriptionStatus = { Pending: 0, Created: 1, Deleted: 2, } as const export type SubscriptionStatus = (typeof SubscriptionStatus)[keyof typeof SubscriptionStatus]