Interface IWikiSchema

IWikiSchema Schema definition for wiki configuration

interface IWikiSchema {
    callbacks?: IWikiCallbacks;
    docDescription?: string;
    getChat(args: IChatArgs): Promise<string>;
    wikiName: string;
}

Properties

callbacks?: IWikiCallbacks

Optional callbacks for wiki operations

docDescription?: string

Optional description of the wiki documentation

wikiName: string

Name identifier for the wiki

Methods