Philippe Da Silva
Philippe Da Silva
@dannyconnell any chance than on your busy schedule you may look into that PR from @radio-miskovice? I'd love to contribute and expand eventually on @radio-miskovice 's work but I'd rather...
From what I see in the PR, @radio-miskovice is just adding type definitions using the standard javascript to typescript declaration pattern on a *.d.ts file which is then used by...
My quick and dirty solution to get it working @SamCcp if you didn't manage to have it working yet is using the followiing approach (this is a workaround and won't...
Sure thing, I'll let you know here when I'll get started linking a fork I'd use to work on this typescript friendly port ;)
Isn't it the actual purpose of [this paragraph](https://github.com/dannyconnell/localbase#delete-a-document)?
In this case, I'm sorry but I don't have enough experience to provide you with a valid answer. I'm actually not planning to rely on the "key" of the key/value...
Yes, but you have the responsibility of defining these links and recovering them. Say for instance you have a collection of 'parents' and a collection of 'children' with some simple...
That's pretty strange @amark: why introduce such dependencies node dependencies? It used to work without it before and adding these introduces polyfill so gunjs can work on a browser... (at...
For those TypeScript users out there, just found out that instead of: ```typescript document.setImmediate = setImmediate ``` which will throw an error, we can use: ```typescript window.setImmediate = setTimeout ```...
Have you tried this: ```javascript if('err' in ack) console.log(err) else console.log(ack.ok) ``` I'm just asking because I didn't know about that trick on typescript Unions ;)