aimpress-chatbot/node_modules/botbuilder-core/lib/propertyManager.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

22 lines
No EOL
728 B
TypeScript

/**
* @module botbuilder
*/
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
import { StatePropertyAccessor } from './botStatePropertyAccessor';
/**
* Interface implemented by classes capable of factoring property accessors.
*/
export interface PropertyManager {
/**
* Creates a new property accessor for reading and writing an individual property to the bots
* state management system.
*
* @template T (Optional) type of property to create. Defaults to `any` type.
* @param name Name of the property being created.
*/
createProperty<T = any>(name: string): StatePropertyAccessor<T>;
}
//# sourceMappingURL=propertyManager.d.ts.map