Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/typed_rpc/src/server.ts>RpcResult

Lightweight JSON-RPC solution for TypeScript projects
Go to Latest
type alias RpcResult
import { type RpcResult } from "https://deno.land/x/typed_rpc@v5.0.1/src/server.ts";

Valid RPC return types that can be serialized.

definition:
| string
| number
| boolean
| null
| { [key: string]: RpcResult; }