Retree - v1.0.0
    Preparing search index...

    Interface IReactiveSelectGetter<This, Dependencies>

    interface IReactiveSelectGetter<
        This extends ReactiveNode = ReactiveNode,
        Dependencies = unknown,
    > {
        compareValueBeforeNotify: boolean;
        equals?: (self: This, previous: unknown, next: unknown) => boolean;
        getDependencies: (self: This) => Dependencies;
        getValue: (self: This) => unknown;
    }

    Type Parameters

    Index

    Properties

    compareValueBeforeNotify: boolean
    equals?: (self: This, previous: unknown, next: unknown) => boolean
    getDependencies: (self: This) => Dependencies
    getValue: (self: This) => unknown