@studion/infra-code-blocks
Version:
Studion common infra components
19 lines • 388 B
TypeScript
export declare namespace OTLPReceiver {
type Protocol = 'http' | 'grpc';
type Config = {
protocols: {
[K in Protocol]?: {
endpoint: string;
};
};
};
}
export declare const Protocol: {
grpc: {
endpoint: string;
};
http: {
endpoint: string;
};
};
//# sourceMappingURL=otlp-receiver.d.ts.map