aimpress-chatbot/node_modules/botbuilder-dialogs-adaptive-runtime-core/lib/configuration.d.ts
“SamoilenkoVadym” 195299ece0 Initial commit
2025-04-27 17:05:18 +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