MAIDR Documentation - v3.39.0
    Preparing search index...

    Interface Observer<T>

    Observer that receives state updates from an observable subject.

    interface Observer<T> {
        update: (state: T) => void;
    }

    Type Parameters

    • T

    Implemented by

    Index

    Properties

    Properties

    update: (state: T) => void