GatewayGuildRoleModifyDispatch
https://discord.com/developers/docs/topics/gateway-events#guild-role-create https://discord.com/developers/docs/topics/gateway-events#guild-role-update
Signature
export type GatewayGuildRoleModifyDispatch = DataPayload<GatewayDispatchEvents.GuildRoleCreate | GatewayDispatchEvents.GuildRoleUpdate, GatewayGuildRoleModifyDispatchData>;Private types
DataPayloadInterface
interface DataPayload<Event extends GatewayDispatchEvents, D = unknown> extends BasePayload { op: GatewayOpcodes.Dispatch; t: Event; d: D;}BasePayloadInterface
interface BasePayload { op: GatewayOpcodes; d?: unknown; s: number; t?: string;}Members
This export does not declare public properties or methods in the generated declaration file.