jointrashposs/types/others.ts

4 lines
75 B
TypeScript
Raw Normal View History

2023-12-24 06:47:17 +01:00
export type PartialRecord<K extends keyof any, T> = {
[P in K]?: T;
};