UNPKG

theater-client

Version:

TypeScript client library for Theater actor system TCP protocol

13 lines 695 B
/** * Theater Client Library * A hygienic, connection-per-operation TypeScript client for the Theater actor system */ export { TheaterClient } from './client/TheaterClient.js'; export { Actor } from './client/Actor.js'; export { TheaterConnection } from './connection/TheaterConnection.js'; export { ChannelStreamImpl } from './client/ChannelStream.js'; export { ActorEventStreamImpl } from './client/ActorEventStream.js'; export * from './types/index.js'; export { createLogger, setLogLevel } from './utils/logger.js'; export { uint8ArrayToNumbers, numbersToUint8Array, encodeString, decodeString, encodeJson, decodeJson } from './utils/serialization.js'; //# sourceMappingURL=index.d.ts.map