UNPKG

trender-client

Version:
15 lines (14 loc) 343 B
import type { error } from "./Global"; export interface fetchSessionsResponseSchema { session_id: string; device_name?: string; from?: { city?: string; country?: string; }; created_at?: Date; } export interface sessionFetchResponse { error?: error; data?: Array<fetchSessionsResponseSchema | []>; }