UNPKG

@slack/web-api

Version:

Official library for using the Slack Platform's Web API

13 lines 388 B
import { WebAPICallResult } from '../WebClient'; export type AdminTeamsOwnersListResponse = WebAPICallResult & { error?: string; needed?: string; ok?: boolean; owner_ids?: string[]; provided?: string; response_metadata?: ResponseMetadata; }; export interface ResponseMetadata { next_cursor?: string; } //# sourceMappingURL=AdminTeamsOwnersListResponse.d.ts.map