eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
8 lines (7 loc) • 386 B
TypeScript
export declare const CHANNEL_AUDIENCES: readonly ["public", "private", "unknown"];
/** Who can observe the conversation on its originating channel. */
export type ChannelAudience = (typeof CHANNEL_AUDIENCES)[number];
export interface ChannelAudienceMetadata {
readonly audience?: ChannelAudience;
}
export declare function normalizeChannelAudience(value: unknown): ChannelAudience;