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