Module

x/deno_slack_hooks/utilities.ts>validateManifestFunctions

Helper library implementing the contract between the Slack CLI and Slack application SDKs
Latest
function validateManifestFunctions
import { validateManifestFunctions } from "https://dotland.deno.dev/x/deno_slack_hooks@1.3.0/utilities.ts";

Performs basic validation on all function definitions in a manifest; if any definition fails validation, an exception will be thrown.

Parameters

applicationRoot: string
  • Absolute path to application root directory.
manifest: any
  • An object representing the application manifest. Should contain a functions key that is a map of function IDs to function definitions.

Returns

Promise<void>