slack-web-api-client
Version:
Streamlined Slack Web API client for TypeScript
19 lines • 508 B
TypeScript
import type { SlackAPIResponse } from "../response";
export type AppsManifestValidateResponse = SlackAPIResponse & {
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