src/app/core/import/import-processing-context.ts
Object to store and share context and cached data between parsing of multiple columns and rows of an import.
(e.g. used for caching of entities when importing entity references)
Properties |
row |
Type : any
|
Full data of the currently imported row. |
rowIndex |
Type : number
|
Default value : -1
|
Index of the currently imported row in the import file. |
export class ImportProcessingContext {
/**
* Index of the currently imported row in the import file.
*/
rowIndex: number = -1;
/**
* Full data of the currently imported row.
*/
row: any;
}