UNPKG

unitsnet-js

Version:

A better way to hold unit variables and easily convert to the destination unit

711 lines (710 loc) 29.1 kB
import { BaseUnit, ToStringOptions } from "../base-unit"; /** API DTO represents a MassConcentration */ export interface MassConcentrationDto { /** The value of the MassConcentration */ value: number; /** The specific unit that the MassConcentration value is representing */ unit: MassConcentrationUnits; } /** MassConcentrationUnits enumeration */ export declare enum MassConcentrationUnits { /** */ GramsPerCubicMillimeter = "GramPerCubicMillimeter", /** */ GramsPerCubicCentimeter = "GramPerCubicCentimeter", /** */ GramsPerCubicMeter = "GramPerCubicMeter", /** */ GramsPerMicroliter = "GramPerMicroliter", /** */ GramsPerMilliliter = "GramPerMilliliter", /** */ GramsPerDeciliter = "GramPerDeciliter", /** */ GramsPerLiter = "GramPerLiter", /** */ TonnesPerCubicMillimeter = "TonnePerCubicMillimeter", /** */ TonnesPerCubicCentimeter = "TonnePerCubicCentimeter", /** */ TonnesPerCubicMeter = "TonnePerCubicMeter", /** */ PoundsPerCubicInch = "PoundPerCubicInch", /** */ PoundsPerCubicFoot = "PoundPerCubicFoot", /** */ SlugsPerCubicFoot = "SlugPerCubicFoot", /** */ PoundsPerUSGallon = "PoundPerUSGallon", /** */ OuncesPerUSGallon = "OuncePerUSGallon", /** */ OuncesPerImperialGallon = "OuncePerImperialGallon", /** */ PoundsPerImperialGallon = "PoundPerImperialGallon", /** */ KilogramsPerCubicMillimeter = "KilogramPerCubicMillimeter", /** */ KilogramsPerCubicCentimeter = "KilogramPerCubicCentimeter", /** */ KilogramsPerCubicMeter = "KilogramPerCubicMeter", /** */ MilligramsPerCubicMeter = "MilligramPerCubicMeter", /** */ MicrogramsPerCubicMeter = "MicrogramPerCubicMeter", /** */ PicogramsPerMicroliter = "PicogramPerMicroliter", /** */ NanogramsPerMicroliter = "NanogramPerMicroliter", /** */ MicrogramsPerMicroliter = "MicrogramPerMicroliter", /** */ MilligramsPerMicroliter = "MilligramPerMicroliter", /** */ CentigramsPerMicroliter = "CentigramPerMicroliter", /** */ DecigramsPerMicroliter = "DecigramPerMicroliter", /** */ PicogramsPerMilliliter = "PicogramPerMilliliter", /** */ NanogramsPerMilliliter = "NanogramPerMilliliter", /** */ MicrogramsPerMilliliter = "MicrogramPerMilliliter", /** */ MilligramsPerMilliliter = "MilligramPerMilliliter", /** */ CentigramsPerMilliliter = "CentigramPerMilliliter", /** */ DecigramsPerMilliliter = "DecigramPerMilliliter", /** */ PicogramsPerDeciliter = "PicogramPerDeciliter", /** */ NanogramsPerDeciliter = "NanogramPerDeciliter", /** */ MicrogramsPerDeciliter = "MicrogramPerDeciliter", /** */ MilligramsPerDeciliter = "MilligramPerDeciliter", /** */ CentigramsPerDeciliter = "CentigramPerDeciliter", /** */ DecigramsPerDeciliter = "DecigramPerDeciliter", /** */ PicogramsPerLiter = "PicogramPerLiter", /** */ NanogramsPerLiter = "NanogramPerLiter", /** */ MicrogramsPerLiter = "MicrogramPerLiter", /** */ MilligramsPerLiter = "MilligramPerLiter", /** */ CentigramsPerLiter = "CentigramPerLiter", /** */ DecigramsPerLiter = "DecigramPerLiter", /** */ KilogramsPerLiter = "KilogramPerLiter", /** */ KilopoundsPerCubicInch = "KilopoundPerCubicInch", /** */ KilopoundsPerCubicFoot = "KilopoundPerCubicFoot" } /** In chemistry, the mass concentration ρi (or γi) is defined as the mass of a constituent mi divided by the volume of the mixture V */ export declare class MassConcentration extends BaseUnit { protected value: number; private gramspercubicmillimeterLazy; private gramspercubiccentimeterLazy; private gramspercubicmeterLazy; private gramspermicroliterLazy; private gramspermilliliterLazy; private gramsperdeciliterLazy; private gramsperliterLazy; private tonnespercubicmillimeterLazy; private tonnespercubiccentimeterLazy; private tonnespercubicmeterLazy; private poundspercubicinchLazy; private poundspercubicfootLazy; private slugspercubicfootLazy; private poundsperusgallonLazy; private ouncesperusgallonLazy; private ouncesperimperialgallonLazy; private poundsperimperialgallonLazy; private kilogramspercubicmillimeterLazy; private kilogramspercubiccentimeterLazy; private kilogramspercubicmeterLazy; private milligramspercubicmeterLazy; private microgramspercubicmeterLazy; private picogramspermicroliterLazy; private nanogramspermicroliterLazy; private microgramspermicroliterLazy; private milligramspermicroliterLazy; private centigramspermicroliterLazy; private decigramspermicroliterLazy; private picogramspermilliliterLazy; private nanogramspermilliliterLazy; private microgramspermilliliterLazy; private milligramspermilliliterLazy; private centigramspermilliliterLazy; private decigramspermilliliterLazy; private picogramsperdeciliterLazy; private nanogramsperdeciliterLazy; private microgramsperdeciliterLazy; private milligramsperdeciliterLazy; private centigramsperdeciliterLazy; private decigramsperdeciliterLazy; private picogramsperliterLazy; private nanogramsperliterLazy; private microgramsperliterLazy; private milligramsperliterLazy; private centigramsperliterLazy; private decigramsperliterLazy; private kilogramsperliterLazy; private kilopoundspercubicinchLazy; private kilopoundspercubicfootLazy; /** * Create a new MassConcentration. * @param value The value. * @param fromUnit The ‘MassConcentration’ unit to create from. * The default unit is KilogramsPerCubicMeter */ constructor(value: number, fromUnit?: MassConcentrationUnits); /** * The base value of MassConcentration is KilogramsPerCubicMeter. * This accessor used when needs a value for calculations and it's better to use directly the base value */ get BaseValue(): number; /** Gets the default unit used when creating instances of the unit or its DTO */ protected get baseUnit(): MassConcentrationUnits.KilogramsPerCubicMeter; /** */ get GramsPerCubicMillimeter(): number; /** */ get GramsPerCubicCentimeter(): number; /** */ get GramsPerCubicMeter(): number; /** */ get GramsPerMicroliter(): number; /** */ get GramsPerMilliliter(): number; /** */ get GramsPerDeciliter(): number; /** */ get GramsPerLiter(): number; /** */ get TonnesPerCubicMillimeter(): number; /** */ get TonnesPerCubicCentimeter(): number; /** */ get TonnesPerCubicMeter(): number; /** */ get PoundsPerCubicInch(): number; /** */ get PoundsPerCubicFoot(): number; /** */ get SlugsPerCubicFoot(): number; /** */ get PoundsPerUSGallon(): number; /** */ get OuncesPerUSGallon(): number; /** */ get OuncesPerImperialGallon(): number; /** */ get PoundsPerImperialGallon(): number; /** */ get KilogramsPerCubicMillimeter(): number; /** */ get KilogramsPerCubicCentimeter(): number; /** */ get KilogramsPerCubicMeter(): number; /** */ get MilligramsPerCubicMeter(): number; /** */ get MicrogramsPerCubicMeter(): number; /** */ get PicogramsPerMicroliter(): number; /** */ get NanogramsPerMicroliter(): number; /** */ get MicrogramsPerMicroliter(): number; /** */ get MilligramsPerMicroliter(): number; /** */ get CentigramsPerMicroliter(): number; /** */ get DecigramsPerMicroliter(): number; /** */ get PicogramsPerMilliliter(): number; /** */ get NanogramsPerMilliliter(): number; /** */ get MicrogramsPerMilliliter(): number; /** */ get MilligramsPerMilliliter(): number; /** */ get CentigramsPerMilliliter(): number; /** */ get DecigramsPerMilliliter(): number; /** */ get PicogramsPerDeciliter(): number; /** */ get NanogramsPerDeciliter(): number; /** */ get MicrogramsPerDeciliter(): number; /** */ get MilligramsPerDeciliter(): number; /** */ get CentigramsPerDeciliter(): number; /** */ get DecigramsPerDeciliter(): number; /** */ get PicogramsPerLiter(): number; /** */ get NanogramsPerLiter(): number; /** */ get MicrogramsPerLiter(): number; /** */ get MilligramsPerLiter(): number; /** */ get CentigramsPerLiter(): number; /** */ get DecigramsPerLiter(): number; /** */ get KilogramsPerLiter(): number; /** */ get KilopoundsPerCubicInch(): number; /** */ get KilopoundsPerCubicFoot(): number; /** * Create a new MassConcentration instance from a GramsPerCubicMillimeter * * @param value The unit as GramsPerCubicMillimeter to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromGramsPerCubicMillimeter(value: number): MassConcentration; /** * Create a new MassConcentration instance from a GramsPerCubicCentimeter * * @param value The unit as GramsPerCubicCentimeter to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromGramsPerCubicCentimeter(value: number): MassConcentration; /** * Create a new MassConcentration instance from a GramsPerCubicMeter * * @param value The unit as GramsPerCubicMeter to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromGramsPerCubicMeter(value: number): MassConcentration; /** * Create a new MassConcentration instance from a GramsPerMicroliter * * @param value The unit as GramsPerMicroliter to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromGramsPerMicroliter(value: number): MassConcentration; /** * Create a new MassConcentration instance from a GramsPerMilliliter * * @param value The unit as GramsPerMilliliter to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromGramsPerMilliliter(value: number): MassConcentration; /** * Create a new MassConcentration instance from a GramsPerDeciliter * * @param value The unit as GramsPerDeciliter to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromGramsPerDeciliter(value: number): MassConcentration; /** * Create a new MassConcentration instance from a GramsPerLiter * * @param value The unit as GramsPerLiter to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromGramsPerLiter(value: number): MassConcentration; /** * Create a new MassConcentration instance from a TonnesPerCubicMillimeter * * @param value The unit as TonnesPerCubicMillimeter to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromTonnesPerCubicMillimeter(value: number): MassConcentration; /** * Create a new MassConcentration instance from a TonnesPerCubicCentimeter * * @param value The unit as TonnesPerCubicCentimeter to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromTonnesPerCubicCentimeter(value: number): MassConcentration; /** * Create a new MassConcentration instance from a TonnesPerCubicMeter * * @param value The unit as TonnesPerCubicMeter to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromTonnesPerCubicMeter(value: number): MassConcentration; /** * Create a new MassConcentration instance from a PoundsPerCubicInch * * @param value The unit as PoundsPerCubicInch to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromPoundsPerCubicInch(value: number): MassConcentration; /** * Create a new MassConcentration instance from a PoundsPerCubicFoot * * @param value The unit as PoundsPerCubicFoot to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromPoundsPerCubicFoot(value: number): MassConcentration; /** * Create a new MassConcentration instance from a SlugsPerCubicFoot * * @param value The unit as SlugsPerCubicFoot to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromSlugsPerCubicFoot(value: number): MassConcentration; /** * Create a new MassConcentration instance from a PoundsPerUSGallon * * @param value The unit as PoundsPerUSGallon to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromPoundsPerUSGallon(value: number): MassConcentration; /** * Create a new MassConcentration instance from a OuncesPerUSGallon * * @param value The unit as OuncesPerUSGallon to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromOuncesPerUSGallon(value: number): MassConcentration; /** * Create a new MassConcentration instance from a OuncesPerImperialGallon * * @param value The unit as OuncesPerImperialGallon to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromOuncesPerImperialGallon(value: number): MassConcentration; /** * Create a new MassConcentration instance from a PoundsPerImperialGallon * * @param value The unit as PoundsPerImperialGallon to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromPoundsPerImperialGallon(value: number): MassConcentration; /** * Create a new MassConcentration instance from a KilogramsPerCubicMillimeter * * @param value The unit as KilogramsPerCubicMillimeter to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromKilogramsPerCubicMillimeter(value: number): MassConcentration; /** * Create a new MassConcentration instance from a KilogramsPerCubicCentimeter * * @param value The unit as KilogramsPerCubicCentimeter to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromKilogramsPerCubicCentimeter(value: number): MassConcentration; /** * Create a new MassConcentration instance from a KilogramsPerCubicMeter * * @param value The unit as KilogramsPerCubicMeter to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromKilogramsPerCubicMeter(value: number): MassConcentration; /** * Create a new MassConcentration instance from a MilligramsPerCubicMeter * * @param value The unit as MilligramsPerCubicMeter to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromMilligramsPerCubicMeter(value: number): MassConcentration; /** * Create a new MassConcentration instance from a MicrogramsPerCubicMeter * * @param value The unit as MicrogramsPerCubicMeter to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromMicrogramsPerCubicMeter(value: number): MassConcentration; /** * Create a new MassConcentration instance from a PicogramsPerMicroliter * * @param value The unit as PicogramsPerMicroliter to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromPicogramsPerMicroliter(value: number): MassConcentration; /** * Create a new MassConcentration instance from a NanogramsPerMicroliter * * @param value The unit as NanogramsPerMicroliter to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromNanogramsPerMicroliter(value: number): MassConcentration; /** * Create a new MassConcentration instance from a MicrogramsPerMicroliter * * @param value The unit as MicrogramsPerMicroliter to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromMicrogramsPerMicroliter(value: number): MassConcentration; /** * Create a new MassConcentration instance from a MilligramsPerMicroliter * * @param value The unit as MilligramsPerMicroliter to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromMilligramsPerMicroliter(value: number): MassConcentration; /** * Create a new MassConcentration instance from a CentigramsPerMicroliter * * @param value The unit as CentigramsPerMicroliter to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromCentigramsPerMicroliter(value: number): MassConcentration; /** * Create a new MassConcentration instance from a DecigramsPerMicroliter * * @param value The unit as DecigramsPerMicroliter to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromDecigramsPerMicroliter(value: number): MassConcentration; /** * Create a new MassConcentration instance from a PicogramsPerMilliliter * * @param value The unit as PicogramsPerMilliliter to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromPicogramsPerMilliliter(value: number): MassConcentration; /** * Create a new MassConcentration instance from a NanogramsPerMilliliter * * @param value The unit as NanogramsPerMilliliter to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromNanogramsPerMilliliter(value: number): MassConcentration; /** * Create a new MassConcentration instance from a MicrogramsPerMilliliter * * @param value The unit as MicrogramsPerMilliliter to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromMicrogramsPerMilliliter(value: number): MassConcentration; /** * Create a new MassConcentration instance from a MilligramsPerMilliliter * * @param value The unit as MilligramsPerMilliliter to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromMilligramsPerMilliliter(value: number): MassConcentration; /** * Create a new MassConcentration instance from a CentigramsPerMilliliter * * @param value The unit as CentigramsPerMilliliter to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromCentigramsPerMilliliter(value: number): MassConcentration; /** * Create a new MassConcentration instance from a DecigramsPerMilliliter * * @param value The unit as DecigramsPerMilliliter to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromDecigramsPerMilliliter(value: number): MassConcentration; /** * Create a new MassConcentration instance from a PicogramsPerDeciliter * * @param value The unit as PicogramsPerDeciliter to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromPicogramsPerDeciliter(value: number): MassConcentration; /** * Create a new MassConcentration instance from a NanogramsPerDeciliter * * @param value The unit as NanogramsPerDeciliter to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromNanogramsPerDeciliter(value: number): MassConcentration; /** * Create a new MassConcentration instance from a MicrogramsPerDeciliter * * @param value The unit as MicrogramsPerDeciliter to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromMicrogramsPerDeciliter(value: number): MassConcentration; /** * Create a new MassConcentration instance from a MilligramsPerDeciliter * * @param value The unit as MilligramsPerDeciliter to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromMilligramsPerDeciliter(value: number): MassConcentration; /** * Create a new MassConcentration instance from a CentigramsPerDeciliter * * @param value The unit as CentigramsPerDeciliter to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromCentigramsPerDeciliter(value: number): MassConcentration; /** * Create a new MassConcentration instance from a DecigramsPerDeciliter * * @param value The unit as DecigramsPerDeciliter to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromDecigramsPerDeciliter(value: number): MassConcentration; /** * Create a new MassConcentration instance from a PicogramsPerLiter * * @param value The unit as PicogramsPerLiter to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromPicogramsPerLiter(value: number): MassConcentration; /** * Create a new MassConcentration instance from a NanogramsPerLiter * * @param value The unit as NanogramsPerLiter to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromNanogramsPerLiter(value: number): MassConcentration; /** * Create a new MassConcentration instance from a MicrogramsPerLiter * * @param value The unit as MicrogramsPerLiter to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromMicrogramsPerLiter(value: number): MassConcentration; /** * Create a new MassConcentration instance from a MilligramsPerLiter * * @param value The unit as MilligramsPerLiter to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromMilligramsPerLiter(value: number): MassConcentration; /** * Create a new MassConcentration instance from a CentigramsPerLiter * * @param value The unit as CentigramsPerLiter to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromCentigramsPerLiter(value: number): MassConcentration; /** * Create a new MassConcentration instance from a DecigramsPerLiter * * @param value The unit as DecigramsPerLiter to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromDecigramsPerLiter(value: number): MassConcentration; /** * Create a new MassConcentration instance from a KilogramsPerLiter * * @param value The unit as KilogramsPerLiter to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromKilogramsPerLiter(value: number): MassConcentration; /** * Create a new MassConcentration instance from a KilopoundsPerCubicInch * * @param value The unit as KilopoundsPerCubicInch to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromKilopoundsPerCubicInch(value: number): MassConcentration; /** * Create a new MassConcentration instance from a KilopoundsPerCubicFoot * * @param value The unit as KilopoundsPerCubicFoot to create a new MassConcentration from. * @returns The new MassConcentration instance. */ static FromKilopoundsPerCubicFoot(value: number): MassConcentration; /** * Gets the base unit enumeration associated with MassConcentration * @returns The unit enumeration that can be used to interact with this type */ protected static getUnitEnum(): typeof MassConcentrationUnits; /** * Gets the default unit used when creating instances of the unit or its DTO * @returns The unit enumeration value used as a default parameter in constructor and DTO methods */ protected static getBaseUnit(): MassConcentrationUnits.KilogramsPerCubicMeter; /** * Create API DTO represent a MassConcentration unit. * @param holdInUnit The specific MassConcentration unit to be used in the unit representation at the DTO */ toDto(holdInUnit?: MassConcentrationUnits): MassConcentrationDto; /** * Create a MassConcentration unit from an API DTO representation. * @param dtoMassConcentration The MassConcentration API DTO representation */ static FromDto(dtoMassConcentration: MassConcentrationDto): MassConcentration; /** * Convert MassConcentration to a specific unit value. * @param toUnit The specific unit to convert to * @returns The value of the specific unit provided. */ convert(toUnit: MassConcentrationUnits): number; private convertFromBase; private convertToBase; /** * Format the MassConcentration to string. * Note! the default format for MassConcentration is KilogramsPerCubicMeter. * To specify the unit format set the 'unit' parameter. * @param unit The unit to format the MassConcentration. * @param options The ToString options, it also can be the number of fractional digits to keep that deprecated and moved to the options object. support in number will be dropped in the upcoming versions. * @returns The string format of the MassConcentration. */ toString(unit?: MassConcentrationUnits, options?: number | ToStringOptions): string; /** * Get MassConcentration unit abbreviation. * Note! the default abbreviation for MassConcentration is KilogramsPerCubicMeter. * To specify the unit abbreviation set the 'unitAbbreviation' parameter. * @param unitAbbreviation The unit abbreviation of the MassConcentration. * @returns The abbreviation string of MassConcentration. */ getUnitAbbreviation(unitAbbreviation?: MassConcentrationUnits): string; /** * Check if the given MassConcentration are equals to the current MassConcentration. * @param massConcentration The other MassConcentration. * @returns True if the given MassConcentration are equal to the current MassConcentration. */ equals(massConcentration: MassConcentration): boolean; /** * Compare the given MassConcentration against the current MassConcentration. * @param massConcentration The other MassConcentration. * @returns 0 if they are equal, -1 if the current MassConcentration is less then other, 1 if the current MassConcentration is greater then other. */ compareTo(massConcentration: MassConcentration): number; /** * Add the given MassConcentration with the current MassConcentration. * @param massConcentration The other MassConcentration. * @returns A new MassConcentration instance with the results. */ add(massConcentration: MassConcentration): MassConcentration; /** * Subtract the given MassConcentration with the current MassConcentration. * @param massConcentration The other MassConcentration. * @returns A new MassConcentration instance with the results. */ subtract(massConcentration: MassConcentration): MassConcentration; /** * Multiply the given MassConcentration with the current MassConcentration. * @param massConcentration The other MassConcentration. * @returns A new MassConcentration instance with the results. */ multiply(massConcentration: MassConcentration): MassConcentration; /** * Divide the given MassConcentration with the current MassConcentration. * @param massConcentration The other MassConcentration. * @returns A new MassConcentration instance with the results. */ divide(massConcentration: MassConcentration): MassConcentration; /** * Modulo the given MassConcentration with the current MassConcentration. * @param massConcentration The other MassConcentration. * @returns A new MassConcentration instance with the results. */ modulo(massConcentration: MassConcentration): MassConcentration; /** * Pow the given MassConcentration with the current MassConcentration. * @param massConcentration The other MassConcentration. * @returns A new MassConcentration instance with the results. */ pow(massConcentration: MassConcentration): MassConcentration; }