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