UNPKG

telefunc

Version:

Remote functions. Instead of API.

9 lines (8 loc) 248 B
export { Abort }; export { isAbort }; declare function isAbort(thing: unknown): thing is ReturnType<typeof Abort>; declare function Abort(abortValue?: unknown): Error & { isAbort: true; abortValue: unknown; __telefunc_isAbort: true; };