export type Optional<T, K extends keyof T> = Pick<Partial<T>, K> & Omit<T, K>;
//# sourceMappingURL=optional.type.d.ts.map