export interface CtxLike { done(result: Result): void; } /** Analog to UnpackEvt Unpack the type argument of a Ctx */ export type UnpackCtx | undefined | null> = Ctx extends CtxLike ? U : never ;