@coralogix/browser
Version:
Official Coralogix SDK for browsers
23 lines (22 loc) • 600 B
TypeScript
import { CoralogixEventType, CoralogixOtelWebOptionsInstrumentations } from '../types';
export declare enum ResourceInitiatorTypes {
Media = "media",
Script = "script",
Css = "css",
Beacon = "beacon",
Img = "img",
Font = "font",
Doc = "doc",
Xhr = "xmlhttprequest",
Fetch = "fetch",
Iframe = "iframe",
Video = "video",
Audio = "audio",
Track = "track",
Other = "other"
}
export type InternalInstrumentationConfig = {
Instrument: any;
confKey: keyof CoralogixOtelWebOptionsInstrumentations | CoralogixEventType;
disable: boolean;
};