UNPKG

seyfert

Version:

The most advanced framework for discord bots

25 lines (24 loc) 714 B
import type { Snowflake } from '..'; import type { APIInvite } from '../payloads'; /** * https://discord.com/developers/docs/resources/invite#get-invite */ export interface RESTGetAPIInviteQuery { /** * Whether the invite should contain approximate member counts */ with_counts?: boolean; /** * Whether the invite should contain the expiration date */ with_expiration?: boolean; /** * The guild scheduled event to include with the invite */ guild_scheduled_event_id?: Snowflake; } export type RESTGetAPIInviteResult = APIInvite; /** * https://discord.com/developers/docs/resources/invite#delete-invite */ export type RESTDeleteAPIInviteResult = APIInvite;