import { PromiseFunction } from 'simple-http-rest-client'; /** * Any Promise-like (compatible with regular Promise) that provides then and catch method for errors. */ export type AnyPromise = { then: (thenFunction: PromiseFunction) => AnyPromise, catch: (catchFunction: PromiseFunction) => AnyPromise, };