Type alias ModelWithDefault<T>

ModelWithDefault<T>: {
    default: T;
    model: T;
}

Output value type for a ModelSignalsFactory.

Type Parameters

  • T

    the type of the model to be handled

Type declaration

  • default: T

    the default model (hence, either the initial default, or the last model given by the setAsDefault event)

  • model: T

    the current model

Generated using TypeDoc