@promster/metrics
Version:
Metrics utilities used by all other server integrations
10 lines (9 loc) • 439 B
TypeScript
import { normalizeMethod } from "./method/index.js";
import { normalizePath } from "./path/index.js";
import { normalizeStatusCode } from "./status-code/index.js";
declare const defaultNormalizers: {
normalizeStatusCode: (statusCode: number) => number;
normalizePath: (path: string) => string;
normalizeMethod: (method: string) => string;
};
export { normalizeStatusCode, normalizePath, normalizeMethod, defaultNormalizers, };