UNPKG

slack-web-api-client

Version:
16 lines 440 B
import type { SlackAPIResponse } from "../response"; export type CanvasesSectionsLookupResponse = SlackAPIResponse & { error?: string; needed?: string; ok: boolean; provided?: string; response_metadata?: ResponseMetadata; sections?: Section[]; }; export interface ResponseMetadata { messages?: string[]; } export interface Section { id?: string; } //# sourceMappingURL=CanvasesSectionsLookupResponse.d.ts.map