UNPKG

es-toolkit

Version:

A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.

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