🌳
pt0/serverF/throwErrorF/errNotifCtxF.mts
3export type ErrNotifCtxStore = {
4 skipErrNotif?: boolean
5 transformErrFnc?: (err: any, isDebugInfo?: boolean) => any
6 onErrFnc?: (opts: {errHash: string, context: any}) => Promise<void>
7 rlHistStore?: string
8}
10export const errNotifCtx = genContext<ErrNotifCtxStore>()