Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
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@v4.2.2/src/server.ts";

Valid RPC return types that can be serialized.

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