UNPKG

@gguf/claw

Version:

Multi-channel AI gateway with extensible messaging integrations

14 lines (13 loc) 522 B
import type { ProviderUsageSnapshot, UsageSummary } from "./provider-usage.types.js"; export declare function formatUsageWindowSummary(snapshot: ProviderUsageSnapshot, opts?: { now?: number; maxWindows?: number; includeResets?: boolean; }): string | null; export declare function formatUsageSummaryLine(summary: UsageSummary, opts?: { now?: number; maxProviders?: number; }): string | null; export declare function formatUsageReportLines(summary: UsageSummary, opts?: { now?: number; }): string[];