mirror of
https://github.com/swc-project/swc.git
synced 2024-12-22 05:01:42 +03:00
d60c3242af
swc_bundler: - Fix cycle detection for complex circular imports. (denoland/deno#10752) swc_ecma_transforms_typescript: - Allow using large values for an enum variant.
17 lines
616 B
TypeScript
17 lines
616 B
TypeScript
// Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/types/audit_log/get_guild_audit_log.ts
|
|
|
|
|
|
import { DiscordAuditLogEvents } from "./audit_log_events.ts";
|
|
|
|
/** https://discord.com/developers/docs/resources/audit-log#get-guild-audit-log-query-string-parameters */
|
|
export interface GetGuildAuditLog {
|
|
/** Filter the log for actions made by a user */
|
|
userId: string;
|
|
/** The type of audit log event */
|
|
actionType: DiscordAuditLogEvents;
|
|
/** Filter the log before a certain entry id */
|
|
before: string;
|
|
/** How many entries are returned (default 50, minimum 1, maximum 100) */
|
|
limit: number;
|
|
}
|