export type NonUndefinable<Type> = Type extends undefined ? never : Type;
