@slack/web-api
Version:
Official library for using the Slack Platform's Web API
13 lines • 311 B
TypeScript
import { WebAPICallResult } from '../WebClient';
export type ApiTestResponse = WebAPICallResult & {
args?: Args;
error?: string;
needed?: string;
ok?: boolean;
provided?: string;
};
export interface Args {
error?: string;
foo?: string;
}
//# sourceMappingURL=ApiTestResponse.d.ts.map