UNPKG

@slack/web-api

Version:

Official library for using the Slack Platform's Web API

27 lines 705 B
import { WebAPICallResult } from '../WebClient'; export type AdminUsersSessionListResponse = WebAPICallResult & { active_sessions?: ActiveSession[]; error?: string; needed?: string; ok?: boolean; provided?: string; response_metadata?: ResponseMetadata; }; export interface ActiveSession { created?: Created; recent?: Created; session_id?: number; team_id?: string; user_id?: string; } export interface Created { device_hardware?: string; ip?: string; os?: string; os_version?: string; slack_client_version?: string; } export interface ResponseMetadata { next_cursor?: string; } //# sourceMappingURL=AdminUsersSessionListResponse.d.ts.map