Skip to content
1 min read · 22 words

Type Alias: MethodMap

ts
type MethodMap = Record<string, MethodDescriptor<unknown[], unknown>>;

Defined in: src/batteries/isolation/types.ts:145

The shape of a methods map passed to defineIsolatedService: request/response descriptors keyed by method name.