@rxjs-ninja/rxjs-utility
Version:
Useful utilities for RxJS
53 lines (52 loc) • 944 B
TypeScript
/**
* @packageDocumentation
* @module Utility
*/
/**
* @private
* @internal
*/
export declare const SupportedTemperatures: {
/**
* Celsius
*/
readonly CELSIUS: "celsius";
/**
* Fahrenheit
*/
readonly FAHRENHEIT: "fahrenheit";
/**
* Kelvin
*/
readonly KELVIN: "kelvin";
/**
* Rankine
*/
readonly RANKINE: "rankine";
};
/**
* @private
* @internal
*/
export declare type SupportedTemperatures = typeof SupportedTemperatures[keyof typeof SupportedTemperatures];
/**
* Available supported values for conversion with the [[temperature]] operator
*/
export declare enum Temperatures {
/**
* Celsius
*/
CELSIUS = "celsius",
/**
* Fahrenheit
*/
FAHRENHEIT = "fahrenheit",
/**
* Kelvin
*/
KELVIN = "kelvin",
/**
* Rankine
*/
RANKINE = "rankine"
}