@tremendous/help
    Preparing search index...

    Interface FingerprintCollectorDependencies<TIdentifier>

    interface FingerprintCollectorDependencies<TIdentifier> {
        checkOutageStatus: () => Promise<boolean>;
        detectDevice: () => Promise<{ device: Device }>;
        outageSamplingRate?: number;
        recordAttempt: (identifier: TIdentifier) => Promise<void>;
        recordFailure: (identifier: TIdentifier) => Promise<void>;
        shouldSkip?: (identifier: TIdentifier) => boolean;
    }

    Type Parameters

    • TIdentifier
    Index

    Properties

    checkOutageStatus: () => Promise<boolean>
    detectDevice: () => Promise<{ device: Device }>
    outageSamplingRate?: number
    recordAttempt: (identifier: TIdentifier) => Promise<void>
    recordFailure: (identifier: TIdentifier) => Promise<void>
    shouldSkip?: (identifier: TIdentifier) => boolean