Expand description
JavaScript system types that are re-exported by js-sys.
These types represent fundamental JavaScript values and are designed to be used as generic type parameters in typed JavaScript collections and APIs.
Structs§
- JsOption
- A nullable JS value of type
T. - Null
- The JavaScript
nullvalue. - Undefined
- The JavaScript
undefinedvalue.
Traits§
- Promising
- Marker trait for types which represent
ResolutionorPromise<Resolution>.