jointrashposs/types/others.ts
2023-12-24 14:47:17 +09:00

4 lines
75 B
TypeScript

export type PartialRecord<K extends keyof any, T> = {
[P in K]?: T;
};