baseHook.ts 241 B

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