The weeb for the next gen discord boat - Wamellow wamellow.com
bot discord
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 7 lines 310 B view raw
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}