@slack/web-api
Version:
Official library for using the Slack Platform's Web API
25 lines • 614 B
TypeScript
import type { WebAPICallResult } from '../../WebClient';
export type BlocksValidateResponse = WebAPICallResult & {
error?: string;
errors?: Error[];
needed?: string;
ok?: boolean;
provided?: string;
response_metadata?: ResponseMetadata;
warning?: string;
};
export interface Error {
code?: string;
constraint?: Constraint;
message?: string;
pointer?: string;
}
export interface Constraint {
expected?: string[];
got?: string;
type?: string;
}
export interface ResponseMetadata {
messages?: string[];
}
//# sourceMappingURL=BlocksValidateResponse.d.ts.map