UNPKG

710 BTypeScriptView Raw
1import type { ActorRef, AnyEventObject, Snapshot } from "../types.js";
2export { fromCallback, type CallbackActorLogic, type CallbackActorRef, type CallbackSnapshot, type CallbackLogicFunction } from "./callback.js";
3export { fromEventObservable, fromObservable, type ObservableActorLogic, type ObservableActorRef, type ObservableSnapshot } from "./observable.js";
4export { fromPromise, type PromiseActorLogic, type PromiseActorRef, type PromiseSnapshot } from "./promise.js";
5export { fromTransition, type TransitionActorLogic, type TransitionActorRef, type TransitionSnapshot } from "./transition.js";
6export declare function createEmptyActor(): ActorRef<Snapshot<undefined>, AnyEventObject, AnyEventObject>;