/**
 * Make all properties in T required
 */
export type RemoveUndefined<T> = {
    [P in keyof T]: Exclude<T[P], undefined>;
};
//# sourceMappingURL=types.d.mts.map