microsoft/qdk

Public

mirrored from https://github.com/microsoft/qdkAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
billti/num2-sim

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

source/npm/qsharp/ux/index.ts

22lines · modecode

1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4// By importing the CSS here, esbuild will by default bundle it up and copy it
5// to a CSS file adjacent to the JS bundle and with the same name.
6import "./qsharp-ux.css";
7import "./qsharp-circuit.css";
8
9export {
10 CreateSingleEstimateResult,
11 type ReData,
12 type CircuitGroup,
13 type CircuitProps,
14} from "./data.js";
15export { Histogram } from "./histogram.js";
16export { ReTable } from "./reTable.js";
17export { SpaceChart } from "./spaceChart.js";
18export { ScatterChart } from "./scatterChart.js";
19export { EstimatesOverview } from "./estimatesOverview.js";
20export { EstimatesPanel } from "./estimatesPanel.js";
21export { Circuit, CircuitPanel } from "./circuit.js";
22export { setRenderer, Markdown } from "./renderers.js";
23