AdaptableFormData
Data which appears in an AdapTable Form.
The default shape is a loosely-typed Record<string, any>, but consumers who care about strong typing can declare their own shape and pass it as the second generic parameter to .
TypeScript
export type AdaptableFormData = Record<string, any>;