Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

5
  • Why is the Answer interface listed twice in the types.d.ts file?
    – rene
    Commented Sep 19, 2021 at 13:26
  • 1
    @rene v0.2.0, that's why :) I was a bit too busy with setting up AST parsing -> pretty-printing, so I forgot that some of the definitions can duplicate the way SE sets things up - and since TS simply does declaration merging on interfaces, no errors popped up - should work fine as is, but I'll add a filter for the duplicate interfaces in the next version Commented Sep 19, 2021 at 13:32
  • @rene done, version 0.3.0 features interface deduplication :) Since the compiler API is incredibly poorly documented I am not sure if there is a way to dedupe them properly, but should be enough unless SE suddenly decides to use partial declarations. On an off-note, the types are now also exported as a global namespace to make them viable in non-module userscripts too. Commented Sep 22, 2021 at 11:00
  • 1
    Would it be OK if I use this package in my own? Giving you credit, of course
    – MrMythical
    Commented Feb 1, 2022 at 16:12
  • 2
    @MrMythical of course - it is nice to see the package is being used :) I think you already give enough attribution when jnstalling the package via the metadata provided by package.json, so I don't think there is anything that needs to be done at all - just use it, and if you find issues/have feature requests - just let me know Commented Feb 1, 2022 at 18:59