Type alias ModelOutputSignals<T>

ModelOutputSignals<T>: {
    model: BehaviorId<T>;
    modelWithDefault: BehaviorId<ModelWithDefault<T>>;
}

Type specifying the output signal ids produced by a ModelSignalsFactory.

Type Parameters

  • T

    the type of the model to be handled

Type declaration

  • model: BehaviorId<T>

    identifier for the current model behavior

  • modelWithDefault: BehaviorId<ModelWithDefault<T>>

    identifier for the behavior combining current model and default model (either the initial default, or the last model given by the setAsDefault event)

Generated using TypeDoc