mirror of
https://github.com/swc-project/swc.git
synced 2024-12-22 05:01:42 +03:00
11 lines
348 B
TypeScript
11 lines
348 B
TypeScript
// Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/types/integrations/integration_account.ts
|
|
|
|
|
|
/** https://discord.com/developers/docs/resources/guild#integration-account-object-integration-account-structure */
|
|
export interface IntegrationAccount {
|
|
/** Id of the account */
|
|
id: string;
|
|
/** Name of the account */
|
|
name: string;
|
|
}
|