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 55f5cd3 commit 05ea165Copy full SHA for 05ea165
src/lightning-stubs/toastContainer/toastContainer.js
@@ -0,0 +1,15 @@
1
+/*
2
+ * Copyright (c) 2023, salesforce.com, inc.
3
+ * All rights reserved.
4
+ * SPDX-License-Identifier: MIT
5
+ * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
6
+ */
7
+import { LightningElement, api } from 'lwc';
8
+
9
+export default class ToastContainer extends LightningElement {
10
+ static instance() {}
11
+ @api containerPosition;
12
+ @api maxToasts;
13
+ @api toastPosition;
14
+ @api close() {}
15
+}
0 commit comments