baseDenormalizer.ts 241 B

123456789
  1. import { DENORMALIZER_TYPE } from '~/types/enums'
  2. abstract class BaseDenormalizer {
  3. static support (type: DENORMALIZER_TYPE): boolean {
  4. throw new Error('Need to be implement into static method')
  5. }
  6. }
  7. export default BaseDenormalizer