UNPKG

@sentry/core

Version:
8 lines 247 B
/** * A function that is possibly wrapped by Sentry. */ export type WrappedFunction<T extends Function = Function> = T & { __sentry_wrapped__?: WrappedFunction<T>; __sentry_original__?: T; }; //# sourceMappingURL=wrappedfunction.d.ts.map