4 lines
173 B
TypeScript
Raw Permalink Normal View History

2026-05-31 13:21:13 +02:00
//#region src/compat/_internal/PartialShallow.d.ts
type PartialShallow<T> = { [P in keyof T]?: T[P] extends object ? object : T[P] };
//#endregion
export { PartialShallow };