/** * Barrel: `@runworkai/framework/channels` (retired). * * Kept so apps built against earlier versions keep compiling. The notices below * are JSDoc rather than line comments on purpose: tsc drops `//` comments from * the emitted `.d.ts`, and these declarations are what every local agent reads * out of `.runwork/types/`. */ /** * @deprecated Channels are retired. This still posts to the workspace event * stream, where the message appears in the activity feed and on the app's * timeline, so deployed apps keep working. Use `emitEvent` from * `@runworkai/framework/events` for new code. */ export { postToChannel } from './core-channels'; /** * @deprecated Channels are retired; see `postToChannel`. */ export type { PostToChannelParams } from './core-channels';