Ed Moore
Ed Moore
Hi @NealSavant I'll be honest and say that I have no idea. I haven't touched Angular since V1. It may still work however I haven't done anything with the Spotify...
Yeah been thinking about changing it to use that flow. Maybe will change for the 2.0 release.
Hi @shawns582 haven't finished the v2 release yet. Finding time to do it :p Yes the different auth workflow is in the plans.
Sorry I haven't had any update on this. Haven't been working with Angular in the last few years and this project has fallen victim to that. I'll try and find...
Ok sounds like we may need to use postMessage for your case. The reason I used localstorage is because of an IE problem with postMessage not sending back to the...
Any progress on this?
There is an open issue for Variadic Kinds in the TypeScript https://github.com/Microsoft/TypeScript/issues/5453 It's currently listed under the "Future" for the TS roadmap https://github.com/Microsoft/TypeScript/wiki/Roadmap However things like curried functions is still...
@evilsoft Yeah, so you can define overloads in TypeScript if a function can take different params in different ways. It's a little annoying at the moment having to write it...
Ok better way is probably to use the overloads: ```typescript export type Arity1 = (a: A) => B; export function compose(f: Arity1): Arity1; export function compose (g: Arity1, f: Arity1):...
@karthikiyengar it might help. Haven't dug into it enough though.