Files
HRM-System/node_modules/es-toolkit/dist/compat/_internal/PartialShallow.d.ts
2026-04-13 08:19:53 +08:00

6 lines
121 B
TypeScript

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