10 lines
235 B
JavaScript
Raw Permalink Normal View History

2025-09-05 14:59:21 +08:00
import { Tracing } from "./internal/trace_events/tracing.mjs";
export const createTracing = function() {
return new Tracing();
};
export const getEnabledCategories = () => "";
export default {
createTracing,
getEnabledCategories
};