Unit system configuration options for measurement standards.

Defines available unit systems (metric, imperial, etc.) with their display names and identification.

Example

const unitSystems: UnitSystemOptions[] = [
{ id: 'metric', name: 'Metric System' },
{ id: 'imperial', name: 'Imperial System' },
{ id: 'us', name: 'US Customary System' }
];
interface UnitSystemOptions {
    name: string;
}

Hierarchy

  • BaseOptions
    • UnitSystemOptions

Properties

Properties

name: string

Display name of the unit system (e.g., 'Metric System', 'Imperial System')