UNPKG

slack-web-api-client

Version:
18 lines 487 B
import type { SlackAPIResponse } from "../response"; export type TeamBillableInfoResponse = SlackAPIResponse & { billable_info?: { [key: string]: BillableInfo; }; error?: string; needed?: string; ok: boolean; provided?: string; response_metadata?: ResponseMetadata; }; export interface BillableInfo { billing_active?: boolean; } export interface ResponseMetadata { next_cursor?: string; } //# sourceMappingURL=TeamBillableInfoResponse.d.ts.map