chrome-devtools-frontend
Version:
Chrome DevTools UI
28 lines (25 loc) • 823 B
text/typescript
// Copyright 2022 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import * as Extras from './extras/extras.js';
import * as Handlers from './handlers/handlers.js';
import * as Helpers from './helpers/helpers.js';
import * as Insights from './insights/insights.js';
import * as Lantern from './lantern/lantern.js';
import * as LanternComputationData from './LanternComputationData.js';
import * as TraceModel from './ModelImpl.js';
import * as Processor from './Processor.js';
import * as TracingManager from './TracingManager.js';
import * as Types from './types/types.js';
export {
Extras,
Handlers,
Helpers,
Insights,
Lantern,
LanternComputationData,
Processor,
TraceModel,
TracingManager,
Types,
};