8 lines
234 B
TypeScript
8 lines
234 B
TypeScript
export interface OtelTracingPatchConfig {
|
|
url?: string;
|
|
}
|
|
export declare const OtelTracingPatchConfigSerializer: {
|
|
_fromJsonObject(object: any): OtelTracingPatchConfig;
|
|
_toJsonObject(self: OtelTracingPatchConfig): any;
|
|
};
|