@dash0/sdk-web
Version:
Dash0's Web SDK to collect telemetry from end-users' web browsers
20 lines (15 loc) • 369 B
text/typescript
// Ensure this is treated as a module.
export {};
declare global {
interface Window {
Zone?: any;
}
type ErrorLike = {
message: string;
stack?: string;
// to permit ['foo'] based access that doesn't break
// when pushed through the Closure compiler
[key: string]: number | string | null | undefined;
};
let __sdkVersion: string;
}