Skip to main content
Module

x/slack_bolt/src/receivers/HTTPReceiver.ts>HTTPReceiverInstallerOptions

TypeScript framework to build Slack apps in a flash with the latest platform features. Deno port of @slack/bolt
Latest
interface HTTPReceiverInstallerOptions
import { type HTTPReceiverInstallerOptions } from "https://deno.land/x/slack_bolt@1.0.0/src/receivers/HTTPReceiver.ts";

Properties

optional
installPath: string
optional
redirectUriPath: string
optional
stateStore: InstallProviderOptions["stateStore"]
optional
authVersion: InstallProviderOptions["authVersion"]
optional
clientOptions: InstallProviderOptions["clientOptions"]
optional
authorizationUrl: InstallProviderOptions["authorizationUrl"]
optional
metadata: InstallURLOptions["metadata"]
optional
userScopes: InstallURLOptions["userScopes"]
optional
callbacks: { failure?: (req: ServerRequest) => Promise<void>; success?: (req: ServerRequest) => Promise<void>; }