Skip to main content
Module

x/rimbu/actor/mod.ts>Actor

Rimbu is a TypeScript library focused on immutable, performant, and type-safe collections and other tools.
Go to Latest
interface Actor
implements [Actor.Base]<S>, [Actor.Dispatch]<D>, [Actor.ActionsDispatch]<ACS, D>
Re-export
import { type Actor } from "https://deno.land/x/rimbu@0.13.1/actor/mod.ts";

Type Parameters

S
optional
D extends (...args: any[]) => any = (action: ActionBase) => void
optional
ACS extends Actor.ActionsDefinition = Record<string, never>