prettier/tests/typescript_union/with-type-params.ts

10 lines
203 B
TypeScript
Raw Normal View History

type GetChatsSagaEffects =
| CallEffect
| PutEffect<
| GetUsersRequestedAction
| GetChatsSucceededAction
| GetChatsFailedAction
| GetChatsStartedAction
>
| SelectEffect