UNPKG

@nexusui/components

Version:

These are custom components specially-developed for NexusUI applications. They will make your life easier by giving you out-of-the-box implementations for various high-level UI elements that you can drop directly into your application.

23 lines (22 loc) 647 B
import { Unit } from '../types'; export declare enum ForcePerLengthUnit { NewtonPerMetre = "N/m", KilonewtonPerMetre = "kN/m", NewtonsPerMillimetre = "N/mm", TonnePerMetre = "t/m", UkTonnePerFoot = "UK-ton/ft", UsTonnePerFoot = "US-ton/ft" } /** * export interface Unit<T> { * type: T; * displayString: string; * step: number; * secondaryDisplayStrings?: string[]; * minValue: number; * isDefault: boolean; * placeholder?: string; * } */ export declare const ForcePerLengthUnits: Unit<ForcePerLengthUnit>[]; export declare const ForcePerLength: Record<ForcePerLengthUnit, Unit<ForcePerLengthUnit>>;