UNPKG

@slack/web-api

Version:

Official library for using the Slack Platform's Web API

32 lines 807 B
import { WebAPICallResult } from '../WebClient'; export type UsergroupsListResponse = WebAPICallResult & { error?: string; needed?: string; ok?: boolean; provided?: string; usergroups?: Usergroup[]; }; export interface Usergroup { auto_provision?: boolean; channel_count?: number; created_by?: string; date_create?: number; date_delete?: number; date_update?: number; description?: string; enterprise_subteam_id?: string; handle?: string; id?: string; is_external?: boolean; is_subteam?: boolean; is_usergroup?: boolean; name?: string; prefs?: Prefs; team_id?: string; updated_by?: string; } export interface Prefs { channels?: string[]; groups?: string[]; } //# sourceMappingURL=UsergroupsListResponse.d.ts.map