export interface ActionCallback { // actual promise as wrapper for the work that has been done promise: Promise; // method callback for cancelling the asynchronous actions cancel(): void; }