@axiomhq/logging
Version:
The official logging package for Axiom
15 lines (14 loc) • 427 B
text/typescript
import { LogLevel } from '../logger.cjs';
import { Transport } from './transport.cjs';
import { SimpleFetchTransport } from './fetch.cjs';
interface ProxyTransportConfig {
url: string;
autoFlush?: boolean | {
durationMs: number;
};
logLevel?: LogLevel;
}
export declare class ProxyTransport extends SimpleFetchTransport implements Transport {
constructor(config: ProxyTransportConfig);
}
export {};