UNPKG

sequelize-typescript-migration

Version:
8 lines (7 loc) 206 B
import { Model } from "sequelize-typescript"; import { CarBrand } from "./car_brand.model"; export declare class Car extends Model<Car> { name: string; carBrandId: number; carBrand: CarBrand; }