芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/app.optimyar.com/backend/node_modules/sequelize/types/lib/associations/has-one.d.ts
import { DataType } from '../data-types'; import { CreateOptions, FindOptions, Model, ModelCtor, SaveOptions } from '../model'; import { Promise } from '../promise'; import { Association, AssociationOptions, SingleAssociationAccessors } from './base'; /** * Options provided when associating models with hasOne relationship */ export interface HasOneOptions extends AssociationOptions { /** * The name of the field to use as the key for the association in the source table. Defaults to the primary * key of the source table */ sourceKey?: string; /** * A string or a data type to represent the identifier in the table */ keyType?: DataType; } export class HasOne
extends Association
{ public accessors: SingleAssociationAccessors; constructor(source: ModelCtor
, target: ModelCtor
, options: HasOneOptions); } /** * The options for the getAssociation mixin of the hasOne association. * @see HasOneGetAssociationMixin */ export interface HasOneGetAssociationMixinOptions extends FindOptions { /** * Apply a scope on the related model, or remove its default scope by passing false. */ scope?: string | string[] | boolean; } /** * The getAssociation mixin applied to models with hasOne. * An example of usage is as follows: * * ```js * * User.hasOne(Role); * * interface UserInstance extends Sequelize.Instance
, UserAttrib { * getRole: Sequelize.HasOneGetAssociationMixin
; * // setRole... * // createRole... * } * ``` * * @see https://sequelize.org/master/class/lib/associations/has-one.js~HasOne.html * @see Instance */ export type HasOneGetAssociationMixin
= (options?: HasOneGetAssociationMixinOptions) => Promise
; /** * The options for the setAssociation mixin of the hasOne association. * @see HasOneSetAssociationMixin */ export interface HasOneSetAssociationMixinOptions extends HasOneGetAssociationMixinOptions, SaveOptions { /** * Skip saving this after setting the foreign key if false. */ save?: boolean; } /** * The setAssociation mixin applied to models with hasOne. * An example of usage is as follows: * * ```js * * User.hasOne(Role); * * interface UserInstance extends Sequelize.Instance
, UserAttributes { * // getRole... * setRole: Sequelize.HasOneSetAssociationMixin
; * // createRole... * } * ``` * * @see https://sequelize.org/master/class/lib/associations/has-one.js~HasOne.html * @see Instance */ export type HasOneSetAssociationMixin
= ( newAssociation?: TModel | TModelPrimaryKey, options?: HasOneSetAssociationMixinOptions ) => Promise
; /** * The options for the createAssociation mixin of the hasOne association. * @see HasOneCreateAssociationMixin */ export interface HasOneCreateAssociationMixinOptions extends HasOneSetAssociationMixinOptions, CreateOptions {} /** * The createAssociation mixin applied to models with hasOne. * An example of usage is as follows: * * ```js * * User.hasOne(Role); * * interface UserInstance extends Sequelize.Instance
, UserAttributes { * // getRole... * // setRole... * createRole: Sequelize.HasOneCreateAssociationMixin
; * } * ``` * * @see https://sequelize.org/master/class/lib/associations/has-one.js~HasOne.html * @see Instance */ export type HasOneCreateAssociationMixin
= ( values?: { [attribute: string]: unknown }, options?: HasOneCreateAssociationMixinOptions ) => Promise
;