The weeb for the next gen discord boat - Wamellow
wamellow.com
bot
discord
1import type { ApiV1UsersMeBillingGetResponse } from "@/typings";
2
3export const MAX_PREMIUM_GUILDS = 1;
4
5export function isActive(status: ApiV1UsersMeBillingGetResponse["status"]): status is "active" | "trialing" | "past_due" {
6 return status === "active" || status === "trialing" || status === "past_due";
7}