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 57aef28 commit 26cee0dCopy full SHA for 26cee0d
src/lightning-stubs/toast/toast.js
@@ -0,0 +1,19 @@
1
+/*
2
+ * Copyright (c) 2025, 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 Toast extends LightningElement {
10
+ static show() {}
11
12
+ @api labelLinks;
13
+ @api messageLinks;
14
+ @api label;
15
+ @api message;
16
+ @api variant;
17
+ @api mode;
18
+ @api focus() {}
19
+}
0 commit comments