mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 12:12:16 +03:00
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;
|
|
}
|