CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
NoopTextMapPropagator.d.ts13 linesDownload Raw Back to propagation
1import { Context } from '../context/types';2import { TextMapPropagator } from './TextMapPropagator';3/**4 * No-op implementations of {@link TextMapPropagator}.5 */6export declare class NoopTextMapPropagator implements TextMapPropagator {7    /** Noop inject function does nothing */8    inject(_context: Context, _carrier: unknown): void;9    /** Noop extract function does nothing and returns the input context */10    extract(context: Context, _carrier: unknown): Context;11    fields(): string[];12}13//# sourceMappingURL=NoopTextMapPropagator.d.ts.map
basant307/AI_Governance_Project · CoolFace