baseNormalizer.ts 234 B

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