UNPKG

485 BTypeScriptView Raw
1import { HasOneOptions } from 'sequelize';
2import { ModelClassGetter } from '../../model/shared/model-class-getter';
3export declare function HasOne<TCreationAttributes, TModelAttributes>(associatedClassGetter: ModelClassGetter<TCreationAttributes, TModelAttributes>, foreignKey?: string): Function;
4export declare function HasOne<TCreationAttributes, TModelAttributes>(associatedClassGetter: ModelClassGetter<TCreationAttributes, TModelAttributes>, options?: HasOneOptions): Function;