type alias RemoteObject.Responseimport { type RemoteObject } from "https://deno.land/x/rimbu@1.2.0/channel/main/index.ts"; const { Response } = RemoteObject; Type defining a remote call response structure definition: { type: "success"; value: any; } | { type: "fail"; error: any; }