import{Model}from'sequelize';exportabstractclassBaseModel<Aextends{},Bextends{}>extendsModel<A,B>{/** * The date when the row was created. */publicdeclarereadonlycreatedAt:Date;/** * The date when the row was last updated. */publicdeclarereadonlyupdatedAt:Date;}