UNPKG

timer-db

Version:

A library for cubing timer results storage with CouchDB-based synchronization.

13 lines (10 loc) 289 B
import { SessionUUID } from "../UUID"; export interface SessionMetadata { name: string; // TODO: How should we handle heterogeneous sessions from older times? eventID: string; } export interface StoredSessionMetadata extends SessionMetadata { _id: SessionUUID; _rev: string; }