ReferenceAction Models
RunRawActionPayload
Reference for `RunRawActionPayload`, exported as part of the public Shardwire surface.
interface exported from src/discord/types.ts.
Summary
Reference for RunRawActionPayload, exported as part of the public Shardwire surface.
Signature
export interface RunRawActionPayload {
/** Dot-path function on the underlying discord.js client (example: `guilds.fetch`). */
method: string;
/** Positional arguments to pass to the target function. */
args?: readonly unknown[];
}