We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a470cf commit be93fa5Copy full SHA for be93fa5
packages/tracer/src/helpers.ts
@@ -1,6 +1,11 @@
1
import { Tracer } from '.';
2
import type { TracerOptions } from './types';
3
4
+/**
5
+ * Create a new tracer instance with the given options.
6
+ *
7
+ * @deprecated - This function will be removed in the next major release. Use the Tracer class directly instead.
8
+ */
9
const createTracer = (options: TracerOptions = {}): Tracer =>
10
new Tracer(options);
11
0 commit comments