8 lines
125 B
TypeScript
8 lines
125 B
TypeScript
/**
|
|
* Bot configuration interface
|
|
*/
|
|
export interface BotConfig {
|
|
instructions: string;
|
|
activities: string[] | null;
|
|
}
|