Interface ReactiveUtilsWatchOptionsCompat

interface ReactiveUtilsWatchOptionsCompat {
    equals?: ((current: unknown, previous: unknown) => boolean);
    initial?: boolean;
    intervalMs?: number;
    once?: boolean;
}

Properties

equals?: ((current: unknown, previous: unknown) => boolean)
initial?: boolean
intervalMs?: number
once?: boolean