ModelTakeWithGlobal

This type represents is an alias for Map<Model, number>, with the exception that it also includes the $global key. The value of this entry represents the default take value for the Model represented by the key. This type is represented like this inside of TypeScript:

ModelTakeWithGlobal
type ModelTakeWithGlobal = {
    $global: number,
    [model: string]: number // Map<Model, number>
} // Map<Model, number> & { $global: number }

Last updated