aimpress-chatbot/node_modules/botbuilder-dialogs-adaptive-runtime-core/lib/configuration.d.ts
“SamoilenkoVadym” 55445dbc86
Some checks failed
Build and deploy Node.js app to Azure Web App - ChatBot2222 / build (push) Has been cancelled
Build and deploy Node.js app to Azure Web App - ChatBot2222 / deploy (push) Has been cancelled
Deploy bot to Azure
2025-04-27 19:55:19 +01:00

24 lines
No EOL
631 B
TypeScript

/**
* Configuration is an interface that is used to obtain configurable values
*/
export interface Configuration {
/**
* Look up a value by path.
*
* @param path path to get
* @returns the value, or undefined
*/
get<T = unknown>(path?: string[]): T | undefined;
/**
* Set a value by path.
*
* @param path path to get
* @param value path to get
*/
set(path: string[], value: unknown): void;
}
/**
* Useful for shimming BotComponents into ComponentRegistrations
*/
export declare const noOpConfiguration: Configuration;
//# sourceMappingURL=configuration.d.ts.map