You can inspect from the record metadata if a record is marked for deletion.
Example, when you have an employee record with empno '7902', which is the primary key:
let model = apex.region('ig_emp').call('getViews').grid.model;
let isDeleted = model.getRecordMetadata('7902').deleted || false;