5 lines
109 B
TypeScript
5 lines
109 B
TypeScript
import type { Celsius } from './Celsius';
|
|
export type MetricsGeneral = {
|
|
temperature: Celsius | null;
|
|
};
|