swc/crates/swc_bundler/tests/.cache/deno/399684936e5af60c248ff6f0a8349c7748616d4b.ts

15 lines
574 B
TypeScript
Raw Normal View History

// Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/types/interactions/commands/application_command_permissions.ts
import { DiscordApplicationCommandPermissionTypes } from "./application_command_permission_types.ts";
/** https://discord.com/developers/docs/interactions/slash-commands#applicationcommandpermissions */
export interface ApplicationCommandPermissions {
/** The id of the role or user */
id: string;
/** Role or User */
type: DiscordApplicationCommandPermissionTypes;
/** `true` to allow, `false`, to disallow */
permission: boolean;
}