swc/bundler/tests/.cache/deno/5fb081f763bf66415ef3f7850be889cbeba9919a.ts
강동윤 d60c3242af
fix(swc): Fix bugs (#1739)
swc_bundler:
 - Fix cycle detection for complex circular imports. (denoland/deno#10752)

swc_ecma_transforms_typescript:
 - Allow using large values for an enum variant.
2021-05-25 14:30:17 +09:00

23 lines
905 B
TypeScript

// Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/types/audit_log/optional_audit_entry_info.ts
/** https://discord.com/developers/docs/resources/audit-log#audit-log-entry-object-optional-audit-entry-info */
export interface OptionalAuditEntryInfo {
/** Number of days after which inactive members were kicked */
deleteMemberDays: string;
/** Number of members removed by the prune */
membersRemoved: string;
/** Channel in which the entities were targeted */
channelId: string;
/** id of the message that was targeted, types: MESSAGE_PIN & MESSAGE_UNPIN */
messageId: string;
/** Number of entities that were targeted */
count: string;
/** id of the overwritten entity */
id: string;
/** type of overwritten entity - "0", for "role", or "1" for "member" */
type: string;
/** Name of the role if type is "0" (not present if type is "1") */
roleName: string;
}