Homa Wong

Results 275 comments of Homa Wong

Not released yet. Need to wait for post 2.1.0. DO NOT MERGE

You are correct. Issues labeled with "Most wanted" already exist in DT. AFAIK, there will be a merge between DT and typings/registry in the future. To avoid conflict, these now...

Thank! I'll try it out and update `generator-typings`

> Okay, so I'm trying to find a type definition for the schema/deserialized content of a package.json file. Are you referring to the json schema for `package.json`? That's probably in...

I'm thinking of module augmentation in that case: ``` ts // official declare module 'npm' { interface packageJson { ... } } // ava declare module 'npm' { interface packageJson...

Would this help? https://github.com/bcherny/json-schema-to-typescript

Thanks. I'm not 100% sure, but I think the `TestMode` should be a `var` and not `interface`. You can actually access it, right? Also, maybe you can consider adding `version`...

> Yeah, var make sense, didn't try but actually import {TestMode} from "radium" should be allowed Yes, you can import the interface But you may not be able to do...

LGTM. @blakeembrey, I think it can be merged.