trender-client
Version:
Official Trender client API
15 lines (14 loc) • 343 B
TypeScript
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 | []>;
}