LendAndRegret/node_modules/es-toolkit/dist/compat/_internal/PartialShallow.d.ts
2026-05-02 17:27:43 +08:00

6 lines
121 B
TypeScript

type PartialShallow<T> = {
[P in keyof T]?: T[P] extends object ? object : T[P];
};
export type { PartialShallow };