trender-client
Version:
Official Trender client API
16 lines (15 loc) • 359 B
TypeScript
import type { error } from "./Global";
declare type fetchSessionsResponseSchema = {
session_id: string;
device_name?: string;
from?: {
city?: string;
country?: string;
};
created_at?: Date;
};
export declare type sessionFetchResponse = {
error?: error;
data?: Array<fetchSessionsResponseSchema | []>;
};
export {};