mobx-keystone
    Preparing search index...

    Interface ModelTypeAndId

    Model type and ID information.

    interface ModelTypeAndId {
        modelId: string | undefined;
        modelIdPropertyName: string | undefined;
        modelInfo: ModelInfo;
        modelType: string;
    }
    Index

    Properties

    modelId: string | undefined

    The model ID value, or undefined if the model has no ID property.

    modelIdPropertyName: string | undefined

    The name of the property that holds the model ID (as declared with idProp), or undefined if the model has no ID property.

    modelInfo: ModelInfo

    The model info (contains the model class and name).

    modelType: string

    The model type name (from $modelType).