import{Model}from'sequelize';import{NEVER_USED}from'./__helpers';exportabstractclassBaseModel<A,B>extendsModel<A,B>{/** * The date when the row was created. */publicgetcreatedAt():Date{thrownewError(NEVER_USED);}/** * The date when the row was last updated. */publicgetupdatedAt():Date{thrownewError(NEVER_USED);}}