fix: bubble exports (#7189)

* fix: bubble exports

* chore: delete the old bubble
This commit is contained in:
Beka Westberg
2023-06-21 11:26:22 -07:00
committed by GitHub
parent 91e8105e81
commit 5ee9003044
4 changed files with 20 additions and 995 deletions

12
core/bubbles.ts Normal file
View File

@@ -0,0 +1,12 @@
/**
* @license
* Copyright 2023 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import {Bubble} from './bubbles/bubble.js';
import {TextBubble} from './bubbles/text_bubble.js';
import {TextInputBubble} from './bubbles/textinput_bubble.js';
import {MiniWorkspaceBubble} from './bubbles/mini_workspace_bubble.js';
export {Bubble, TextBubble, TextInputBubble, MiniWorkspaceBubble};