Type alias ThroughOptions<TCreationAttributes, TModelAttributes>

ThroughOptions<TCreationAttributes, TModelAttributes>: {
    [K in keyof OriginThroughOptions]: K extends "model"
        ? ModelClassGetter<TCreationAttributes, TModelAttributes> | string
        : OriginThroughOptions[K]
}

Type Parameters

  • TCreationAttributes extends {}

  • TModelAttributes extends {}

Generated using TypeDoc