4 lines
173 B
TypeScript
4 lines
173 B
TypeScript
//#region src/compat/_internal/PartialShallow.d.ts
|
|
type PartialShallow<T> = { [P in keyof T]?: T[P] extends object ? object : T[P] };
|
|
//#endregion
|
|
export { PartialShallow }; |