baseHook.ts 262 B

1234567891011121314
  1. import {DataProviderArgs} from "~/types/interfaces";
  2. class BaseHook{
  3. static priority = 255
  4. constructor() {
  5. }
  6. static support(args:DataProviderArgs): boolean{
  7. throw new Error('Need to be implement into static method')
  8. }
  9. }
  10. export default BaseHook