VincentA

Results 2 comments of VincentA

I have the same problem with `args?: Partial` for use Args composition... I can't because Partial turn the keys object to potentially undefined... i need use keyword **as** or set...

In my case i created a function for that. ```javascript export function ajaxObs(params: { [key: string]: any; url: string; method?: string; body?: any; headers?: { [key: string]: string }; responseType?:...