Type alias ResolvableAttributes<T>

ResolvableAttributes<T>: {
    [K in keyof Attributes<T>]: RawAttributes<T>[K] | T[K] | ((previouslyResolvedAttributes?) => T[K])
}

The model attributes when constructing with a factory. Attributes might be functions called with the previously resolved attributes returning the intended attribute value.

Type Parameters

Generated using TypeDoc