@sentry/utils
Version:
Utilities for all Sentry JavaScript SDKs
8 lines • 347 B
TypeScript
import type { Primitive } from '@sentry/types';
export type GenericObject = {
[key: string]: Value;
};
export type GenericFunction = (...args: unknown[]) => Value;
export type Value = Primitive | GenericFunction | GenericObject;
export type RequireResult = GenericObject | (GenericFunction & GenericObject);
//# sourceMappingURL=types.d.ts.map