@lacunahub/letsfrag
    Preparing search index...

    Interface CachedPromise

    Internal structure for storing pending promise state

    interface CachedPromise {
        timeout?: Timeout;
        reject(error: Error): void;
        resolve(value: unknown): void;
    }
    Index

    Properties

    Methods

    Properties

    timeout?: Timeout

    Auto-rejection timeout handle (if timeout was specified)

    Methods