mobx-sentinel API doc
    Preparing search index...

    Type Alias HandlerOptions<Expr>

    Handler options

    type HandlerOptions<Expr = unknown> = {
        delayMs?: number;
        equals?: IEqualsComparer<Expr>;
        initialRun?: boolean;
    }

    Type Parameters

    • Expr = unknown
    Index

    Properties

    delayMs?: number

    Throttle reaction. [milliseconds]

    100
    
    equals?: IEqualsComparer<Expr>

    The equality comparer for the expression.

    Only effective for async handlers.

    initialRun?: boolean

    Whether to run the handler immediately

    true