UNPKG

@slack/web-api

Version:

Official library for using the Slack Platform's Web API

16 lines 442 B
import type { WebAPICallResult } from '../../WebClient'; export type AdminUsersGetExpirationResponse = WebAPICallResult & { error?: string; needed?: string; ok?: boolean; provided?: string; user?: User; }; export interface User { email?: string; expiration_ts?: number; id?: string; is_restricted?: boolean; is_ultra_restricted?: boolean; } //# sourceMappingURL=AdminUsersGetExpirationResponse.d.ts.map