@iyio/convo-lang
Version:
A conversational language.
7 lines (6 loc) • 376 B
TypeScript
import { Scope } from "@iyio/common";
import { Conversation, ConversationOptions } from "./Conversation";
/**
* Creates a new Conversation configured using values defined in the given scope or the root scope.
*/
export declare const createConversationFromScope: (scope?: Scope, defaultOptions?: ConversationOptions, overridingOptions?: ConversationOptions) => Conversation;