response-url.ts 155 B

123456
  1. import type { KnownBlock, Block } from '@slack/web-api';
  2. export type RespondBodyForResponseUrl = {
  3. text?: string,
  4. blocks?: (KnownBlock | Block)[],
  5. };