baseDenormalizer.ts 218 B

123456789
  1. import { DENORMALIZER_TYPE } from '~/types/enums'
  2. abstract class BaseDenormalizer {
  3. static support (_type: DENORMALIZER_TYPE): boolean {
  4. throw new Error('Not implemented')
  5. }
  6. }
  7. export default BaseDenormalizer