@mui/types 7.2.9 → 7.2.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.d.ts +7 -0
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -146,3 +146,10 @@ export interface OverridableTypeMap {
146
146
  */
147
147
  // tslint:disable-next-line: ban-types
148
148
  export type Simplify<T> = T extends Function ? T : { [K in keyof T]: T[K] };
149
+
150
+ /**
151
+ * Changes the properties K from T to required
152
+ */
153
+ export type PartiallyRequired<T, K extends keyof T> = DistributiveOmit<T, K> & {
154
+ [P in K]-?: T[P];
155
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/types",
3
- "version": "7.2.9",
3
+ "version": "7.2.10",
4
4
  "private": false,
5
5
  "author": "MUI Team",
6
6
  "description": "Utility types for MUI.",