/**
 * Optional type
 */
export type Optional<T> = T | undefined

/**
 * Cancelation function
 */
export type CancelFunction = () => void
