UNPKG

@slack/web-api

Version:

Official library for using the Slack Platform's Web API

19 lines 513 B
import type { WebAPICallResult } from '../../WebClient'; export type AppsManifestValidateResponse = WebAPICallResult & { error?: string; errors?: Error[]; needed?: string; ok?: boolean; provided?: string; response_metadata?: ResponseMetadata; }; export interface Error { code?: string; message?: string; pointer?: string; related_component?: string; } export interface ResponseMetadata { messages?: string[]; } //# sourceMappingURL=AppsManifestValidateResponse.d.ts.map