tamaina 2021-09-12 23:21:19 +09:00
parent b2f27e9b4e
commit 7fd5152f73
1 changed files with 2 additions and 1 deletions

View File

@ -19,9 +19,10 @@ import { Packed } from '@/misc/schema';
// 辞書(interface or type)から{ type, body }ユニオンを定義
// https://stackoverflow.com/questions/49311989/can-i-infer-the-type-of-a-value-using-extends-keyof-type
type EventUnions<T extends object> = { [K in keyof T]: { type: K; body: T[K]; } }
type EventUnionFromDictionary<
T extends object,
U = { [K in keyof T]: { type: K; body: T[K]; } }
U = EventUnions<T>
> = U[keyof U];
//#region Stream type-body definitions