mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-13 22:42:38 -05:00
5 lines
138 B
TypeScript
5 lines
138 B
TypeScript
// https://stackoverflow.com/a/52910586
|
|
export type Serialized<T> = {
|
|
[P in keyof T]: T[P] extends Date ? string : Serialized<T[P]>;
|
|
};
|