Skip to main content
Module

x/slack_bolt/src/types/helpers.ts>KnownKeys

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

Type function which removes the index signature for the type T

definition: [K in keyof T]: string extends K ? never : number extends K ? never : K extends [_ in keyof T]: infer U ? U : never