Skip to main content
This package has been archived, and as such it is read-only.
This release is 1 version behind 24.6.2 — the latest version of @rivet-gg/actor. Jump to latest

🔩 Rivet Actors have built-in RPC, state, and events — the easiest way to build modern applications.

This package works with Deno
This package works with Deno
JSR Score
88%
Published
2 months ago (24.6.1-rc.2)
/** * This file re-exports types from our internal bindings as a module dependency. * * An alternative approach is to use `declare module Rivet` then have developers * use `import "path/to/types.d.ts"`. However, this is rather annoying to do in * every file that uses Rivet. Additionally, it's not something most JS * developers are used to. */ export type { ActorContext } from "./bridge_types/90_rivet_ns.d.ts"; export type { Metadata } from "./bridge_types/types/metadata.d.ts"; export type { Kv } from "./bridge_types/40_rivet_kv.d.ts";