discord-api-types
Version:
Discord API typings that are kept up to date for use in bot library creation.
20 lines • 745 B
TypeScript
import type { APIInvite } from '../../payloads/v6/index';
/**
* https://discord.com/developers/docs/resources/invite#get-invite
*
* @deprecated API v6 is deprecated and the types will not receive further updates, please update to v8.
*/
export interface RESTGetAPIInviteQuery {
with_counts?: boolean;
}
/**
* @deprecated API v6 is deprecated and the types will not receive further updates, please update to v8.
*/
export type RESTGetAPIInviteResult = APIInvite;
/**
* https://discord.com/developers/docs/resources/invite#delete-invite
*
* @deprecated API v6 is deprecated and the types will not receive further updates, please update to v8.
*/
export type RESTDeleteAPIInviteResult = APIInvite;
//# sourceMappingURL=invite.d.ts.map