UNPKG

r19

Version:

Simple remote procedure calls in TypeScript

7 lines (6 loc) 242 B
import { ErrorLike } from "./isErrorLike"; export type R19ErrorLike = ErrorLike & { procedurePath?: string[]; procedureArgs?: Record<string, unknown>; }; export declare const isR19ErrorLike: (error: unknown) => error is R19ErrorLike;