fix type in CustomEmojiService 2

This commit is contained in:
tamaina
2023-04-12 12:32:27 +00:00
parent 6ea057f8f8
commit 3ff5a5ae29
2 changed files with 3 additions and 2 deletions

View File

@@ -172,7 +172,7 @@ type EventUnionFromDictionary<
> = U[keyof U];
// redis通すとDateのインスタンスはstringに変換されるので
type Serialized<T> = {
export type Serialized<T> = {
[K in keyof T]:
T[K] extends Date
? string