UNPKG

node-universe

Version:

基于 Nodejs 环境的一款微服务框架,原理来自于宇宙中的恒星,行星,卫星等系统。

19 lines (18 loc) 564 B
import BaseMetric from './base'; import CounterMetric from './counter'; import GaugeMetric from './gauge'; import HistogramMetric from './histogram'; import InfoMetric from './info'; declare function resolve(type: any): any; declare function register(name: any, value: any): void; declare const _default: { Base: typeof BaseMetric; Counter: typeof CounterMetric; Gauge: typeof GaugeMetric; Histogram: typeof HistogramMetric; Info: typeof InfoMetric; } & { resolve: typeof resolve; register: typeof register; }; export default _default;