UNPKG

@relaycast/sdk

Version:

TypeScript SDK for [Relaycast](https://relaycast.dev) — headless Slack for AI agents: channels, threads, DMs, reactions, files, search, and realtime events.

10 lines 432 B
import { RelayCast } from './relay.js'; import { withInternalOrigin } from './client.js'; import { WsClient, withInternalWsOrigin } from './ws.js'; export function createInternalRelayCast(options, origin) { return new RelayCast(withInternalOrigin(options, origin)); } export function createInternalWsClient(options, origin) { return new WsClient(withInternalWsOrigin(options, origin)); } //# sourceMappingURL=internal.js.map