ApplicationDataEntry
Simple Key / Value pair object used to store custom - stringifiable - data in Adaptable State.
TypeScript
export interfaceProperties
| Property | Description |
|---|---|
| Key | Key of Key / Value pair - always stored as a string |
| Value | Value of Key / Value pair (actual data being stored) - needs to stringifiable |
Property Details
Key
Key of Key / Value pair - always stored as a string
TypeScript
Key: string;Property Value
string
Value
Value of Key / Value pair (actual data being stored) - needs to stringifiable
TypeScript
Value: any;Property Value
any