import { Union } from "ts-toolbelt"; declare type NonNullable = { [Key in keyof Type]: Union.Exclude; }; export default NonNullable;