StateKey
Type Alias
A type-safe key to use with TransferState
.
Description
A type-safe key to use with TransferState
.
Example:
const COUNTER_KEY = makeStateKey<number>('counter');let value = 10;transferState.set(COUNTER_KEY, value);
Jump to details