ip-devicer
    Preparing search index...

    Interface IpStorage

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

    Methods