Skip to content

Commit 05ea165

Browse files
pozilTemplarian
andauthored
feat: toastContainer stub (#338)
* feat: toastContainer stub * Update src/lightning-stubs/toastContainer/toastContainer.js Co-authored-by: Austin Andrews <[email protected]> * Update toastContainer.js Removed unused `config` var to avoid linting error. --------- Co-authored-by: Austin Andrews <[email protected]>
1 parent 55f5cd3 commit 05ea165

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)