signalapp / libsignal

Home to the Signal Protocol as well as other cryptographic primitives which make Signal possible.
GNU Affero General Public License v3.0
3.08k stars 362 forks source link

Node: Don't export initLogger and LogLevel directly from Native.d.ts #447

Closed jrose-signal closed 2 years ago

jrose-signal commented 2 years ago

Native.d.ts only applies in TypeScript mode, not plain JavaScript. This also confuses esbuild. Rather than try to fight that, return to having Native not be exported at all, using a translation layer.

Also, make sure we use "true" TypeScript enums rather than const enum, for the same reasons.