export type Command = { type: "hello"; data: string; }; export type ExtractType = Extract< T, { type: K } >;