HandleImportedDataContext

Context used when importing Data

TypeScript
export interface HandleImportedDataContext<T = Record<string, any>> extends
Extends

BaseContext

Properties

PropertyDescription
dataData which has been imported
adaptableContextCustom application Context provided in AdaptableOptions.adaptableContext

Property Details

data

Data which has been imported

TypeScript
data: T[];
Property Value

T[]

adaptableContext

Inherited from BaseContext

Custom application Context provided in AdaptableOptions.adaptableContext

TypeScript
adaptableContext: any;
Property Value

any