Unit system configuration options for measurement standards.
Defines available unit systems (metric, imperial, etc.) with their display names and identification.
const unitSystems: UnitSystemOptions[] = [ { id: 'metric', name: 'Metric System' }, { id: 'imperial', name: 'Imperial System' }, { id: 'us', name: 'US Customary System' }]; Copy
const unitSystems: UnitSystemOptions[] = [ { id: 'metric', name: 'Metric System' }, { id: 'imperial', name: 'Imperial System' }, { id: 'us', name: 'US Customary System' }];
Display name of the unit system (e.g., 'Metric System', 'Imperial System')
Unit system configuration options for measurement standards.
Defines available unit systems (metric, imperial, etc.) with their display names and identification.
Example