11 lines
513 B
TypeScript
11 lines
513 B
TypeScript
|
|
/**
|
|
|
|
* An ICU4X Measurement Unit object which represents a single unit of measurement such as `meter`, `second`, `kilometer-per-hour`, `square-meter`, etc.
|
|
|
|
* You can create an instance of this object using {@link ICU4XMeasureUnitParser `ICU4XMeasureUnitParser`} by calling the `parse_measure_unit` method.
|
|
|
|
* See the {@link https://docs.rs/icu/latest/icu/experimental/units/measureunit/struct.MeasureUnit.html Rust documentation for `MeasureUnit`} for more information.
|
|
*/
|
|
export class ICU4XMeasureUnit {
|
|
}
|