ChemPal Documentation - v1.6.0
    Preparing search index...

    Variable UOMConst

    UOM: {
        KG: "kg";
        LB: "lb";
        ML: "ml";
        G: "g";
        L: "l";
        QT: "qt";
        GAL: "gal";
        OZ: "oz";
        FLOZ: "floz";
        MG: "mg";
        PCS: "pcs";
        EA: "ea";
    } = ...

    Contains abbreviated forms of units of measurement

    Type declaration

    • ReadonlyKG: "kg"

      Abbreviated form of kilogram

    • ReadonlyLB: "lb"

      Abbreviated form of pound

    • ReadonlyML: "ml"

      Abbreviated form of milliliter

    • ReadonlyG: "g"

      Abbreviated form of gram

    • ReadonlyL: "l"

      Abbreviated form of liter

    • ReadonlyQT: "qt"

      Abbreviated form of quart

    • ReadonlyGAL: "gal"

      Abbreviated form of gallon

    • ReadonlyOZ: "oz"

      Abbreviated form of ounce

    • ReadonlyFLOZ: "floz"

      Abbreviated form of fluid ounce

    • ReadonlyMG: "mg"

      Abbreviated form of milligram

    • ReadonlyPCS: "pcs"

      Abbreviated form of piece

    • ReadonlyEA: "ea"

      Abbreviated form of each

    export const UOM = {
    /** Abbreviated form of kilogram */
    KG: 'kg',
    /** Abbreviated form of pound */
    LB: 'lb',
    /** Abbreviated form of milliliter */
    ML: 'ml',
    /** Abbreviated form of gram */
    G: 'g',
    /** Abbreviated form of liter */
    L: 'l',
    /** Abbreviated form of quart */
    QT: 'qt',
    /** Abbreviated form of gallon */
    GAL: 'gal',
    /** Abbreviated form of ounce */
    OZ: 'oz',
    /** Abbreviated form of fluid ounce */
    FLOZ: 'floz',
    /** Abbreviated form of milligram */
    MG: 'mg',
    /** Abbreviated form of piece */
    PCS: 'pcs',
    /** Abbreviated form of each */
    EA: 'ea',
    } as const;