tls-devicer
    Preparing search index...

    Interface TlsStorage

    interface TlsStorage {
        clear(deviceId?: string): void;
        getHistory(deviceId: string, limit?: number): TlsSnapshot[];
        getLatest(deviceId: string): TlsSnapshot | null;
        init(): Promise<void>;
        save(snapshot: Omit<TlsSnapshot, "id">): TlsSnapshot;
        size(): number;
    }
    Index

    Methods