Interface ModelSettings<TModelAttributes, TCreationAttributes>

interface ModelSettings<TModelAttributes, TCreationAttributes> {
    attributes: ModelAttributes<Model<TModelAttributes, TCreationAttributes>, TModelAttributes>;
    model?: ModelStatic<Model<TModelAttributes, TCreationAttributes>>;
    options?: ModelOptions<Model<TModelAttributes, TCreationAttributes>>;
}

Type Parameters

  • TModelAttributes extends typeof AnyJson = any
  • TCreationAttributes extends typeof AnyJson = TModelAttributes

Properties

attributes: ModelAttributes<Model<TModelAttributes, TCreationAttributes>, TModelAttributes>
model?: ModelStatic<Model<TModelAttributes, TCreationAttributes>>
options?: ModelOptions<Model<TModelAttributes, TCreationAttributes>>