mirror of
https://iceshrimp.dev/Crimekillz/jointrashposs.git
synced 2024-11-22 17:03:50 +01:00
4 lines
75 B
TypeScript
4 lines
75 B
TypeScript
export type PartialRecord<K extends keyof any, T> = {
|
|
[P in K]?: T;
|
|
};
|