/** * Optional type */ export type Optional = T | undefined; /** * Cancelation function */ export type CancelFunction = () => void;