PropertyManager interface

Interface implemented by classes capable of factoring property accessors.

Methods

createProperty<T>(string)

Creates a new property accessor for reading and writing an individual property to the bots state management system.

Method Details

createProperty<T>(string)

Creates a new property accessor for reading and writing an individual property to the bots state management system.

function createProperty<T>(name: string): StatePropertyAccessor<T>

Parameters

name

string

Name of the property being created.

Returns