/** Omit all keys K from possible union types T */ export type ExcludeFromUnion = T extends T ? Omit : never; /** Allows to explicitly declare a function parameter as optional */ export type OptionalArgument = T | undefined; //# sourceMappingURL=helpers.d.ts.map