ApplicationDataEntry

Simple Key / Value pair object used to store custom - stringifiable - data in Adaptable State.

TypeScript
export interface

Properties

PropertyDescription
KeyKey of Key / Value pair - always stored as a string
ValueValue 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