Skip to main content
Module

x/discord_api_types/rest/v6/auditLog.ts

Up to date Discord API Typings, versioned by the API version
Go to Latest
File
import type { APIAuditLog, AuditLogEvent } from '../../payloads/v6/auditLog.ts';
/** * https://discord.com/developers/docs/resources/audit-log#get-guild-audit-log * @deprecated API v6 is deprecated and the types will not receive further updates, please update to v8. */export interface RESTGetAPIAuditLogQuery { user_id?: string; action_type?: AuditLogEvent; before?: string; limit?: number;}
/** * @deprecated API v6 is deprecated and the types will not receive further updates, please update to v8. */export type RESTGetAPIAuditLogResult = APIAuditLog;