UNPKG

@slack/web-api

Version:

Official library for using the Slack Platform's Web API

14 lines 378 B
import { WebAPICallResult } from '../WebClient'; export type TeamBillableInfoResponse = WebAPICallResult & { billable_info?: { [key: string]: BillableInfo; }; error?: string; needed?: string; ok?: boolean; provided?: string; }; export interface BillableInfo { billing_active?: boolean; } //# sourceMappingURL=TeamBillableInfoResponse.d.ts.map