Fyodor Yemelyanenko

Results 5 comments of Fyodor Yemelyanenko

Presented line of code has several parts related to typing 1. Type, that `yield` returns. Change, I've proposed is not related to this. And I'm not sure that typing `yield`...

Proposed change solve following problem. Suppose we have such type definition for `Action1` ``` interface Action1 extends Action { type: 'ACTION1'; payload: string; } const action1: Action1 = { type:...

I'm here to clarify everything :-) For `take` my generic parameter will be validated by defined actions. For example, I create file `taskStore.ts` to keep tasks list for my SPA....

Hi @Andarist , @aikoven @gilbsgilbs if you have any questions or suggestions regarding this PR? I'm here to answer

Seems that I have found out a solution. As noted by https://github.com/Azure/azure-functions-host/issues/5090#issuecomment-656420172 cors middleware is used inside Azure Function Host but it is disabled by default. And if it is...