@iocium/rdap-lite - v1.0.1
    Preparing search index...

    Interface RDAPCache

    Interface for pluggable cache systems.

    interface RDAPCache {
        get: (key: string) => Promise<any>;
        set: (key: string, value: any, ttlSeconds?: number) => Promise<void>;
    }
    Index

    Properties

    Properties

    get: (key: string) => Promise<any>
    set: (key: string, value: any, ttlSeconds?: number) => Promise<void>