Type alias SimpleAttributes<T>

SimpleAttributes<T>: {
    [K in SimpleAttributeKeys<T>]: T[K] extends Model | ModelCollection<Model>
        ? never
        : T[K]
}

The attributes the model is handling except relation values.

Type Parameters

  • T extends HasAttributes = HasAttributes

Generated using TypeDoc