Type Alias IsGuardUserCallback<T>

IsGuardUserCallback: (
    options: {
        arg: IsGuildUserArg;
        client: T;
        guild: Guild | null;
        user: User | APIUser | null;
    },
) => Awaitable<boolean>

Type Parameters

  • T extends Client = Client

Type declaration

    • (
          options: {
              arg: IsGuildUserArg;
              client: T;
              guild: Guild | null;
              user: User | APIUser | null;
          },
      ): Awaitable<boolean>
    • Parameters

      • options: {
            arg: IsGuildUserArg;
            client: T;
            guild: Guild | null;
            user: User | APIUser | null;
        }

      Returns Awaitable<boolean>