1import { genContext } from "../genContextF.mts"3export type ErrNotifCtxStore = {4 skipErrNotif?: boolean5 transformErrFnc?: (err: any, isDebugInfo?: boolean) => any6 onErrFnc?: (opts: {errHash: string, context: any}) => Promise<void>7 rlHistStore?: string8}10export const errNotifCtx = genContext<ErrNotifCtxStore>()