import { DENORMALIZER_TYPE } from '~/types/enums' abstract class BaseDenormalizer { static support (type: DENORMALIZER_TYPE): boolean { throw new Error('Need to be implement into static method') } } export default BaseDenormalizer