Type alias PluginMethod<TArgs, TResult, TEnv>

PluginMethod<TArgs, TResult, TEnv>: ((args, client, env) => MaybeAsync<TResult>)

Type Parameters

  • TArgs extends Record<string, unknown> = Record<string, unknown>

  • TResult = unknown

  • TEnv extends Record<string, unknown> = Record<string, unknown>

Type declaration

    • (args, client, env): MaybeAsync<TResult>
    • Invocable plugin method.

      Parameters

      • args: TArgs

        Arguments for the method, structured as a map, removing the chance of incorrectly ordering arguments.

      • client: CoreClient

        The client instance requesting this invocation. This client will be used for any sub-invokes that occur.

      • env: TEnv

      Returns MaybeAsync<TResult>

Generated using TypeDoc