import { Model } from 'sequelize'; import { ITokenAttributes } from '../../interfaces/tokenInterface'; import { TOKEN_TYPES } from '../../constants/app'; declare class TokenModel extends Model implements ITokenAttributes { id: string; token: string; userId: string; type: TOKEN_TYPES; expiresAt: Date; blacklisted: boolean; readonly createdAt: Date; readonly deletedAt: string; readonly updatedAt: Date; } export default TokenModel;