baseDenormalizer.ts 252 B

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