expo-quanta
Version:
Quanta.js/Expo: Expo SDK for Quanta Tools
18 lines (17 loc) • 487 B
TypeScript
export interface CrashedSession {
screenId: string;
args?: Record<string, string>;
startTime: number;
duration: number;
}
/**
* Service for managing session storage
*/
export declare class SessionStorageService {
private static persistSessions;
private static getStoredSessions;
static sessions: CrashedSession[] | null;
static wasEmpty: boolean;
static get(): Promise<CrashedSession[]>;
static set(sessions: CrashedSession[]): Promise<void>;
}