endojs / endo

Endo is a distributed secure JavaScript sandbox, based on SES
Apache License 2.0
831 stars 72 forks source link

fix(ses): widen type of globalThis in Compartment #2644

Closed boneskull closed 4 days ago

boneskull commented 4 days ago

globalThis can contain Symbol keys, so it is more correctly typed as Record<PropertyKey, any>.

This also widens the type of the globals parameter in the Compartment constructor.