@slack/web-api
Version:
Official library for using the Slack Platform's Web API
17 lines • 430 B
TypeScript
import { WebAPICallResult } from '../WebClient';
export type AuthTeamsListResponse = WebAPICallResult & {
error?: string;
needed?: string;
ok?: boolean;
provided?: string;
response_metadata?: ResponseMetadata;
teams?: Team[];
};
export interface ResponseMetadata {
next_cursor?: string;
}
export interface Team {
id?: string;
name?: string;
}
//# sourceMappingURL=AuthTeamsListResponse.d.ts.map