import {DataDeleterArgs} from "~/types/interfaces"; class BaseHook{ static priority = 255 static support(args:DataDeleterArgs): boolean{ throw new Error('Need to be implement into static method') } } export default BaseHook