Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2c26bf1

Browse files
committedNov 10, 2024·
Export custom component types
* Only export the type for typescript/jsdoc
1 parent 5de217c commit 2c26bf1

File tree

125 files changed

+127
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

125 files changed

+127
-2
lines changed
 

‎components/alert/alert-toast.js

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ let ALERT_HAS_HOVER = false; // if this alert or sibling alert is hovered on
3636
* @slot - Default content placed inside of the component
3737
* @fires d2l-alert-toast-button-press - Dispatched when the toast's action button is clicked
3838
* @fires d2l-alert-toast-close - Dispatched when the toast is closed
39+
* @typedef {AlertToast} AlertToastExported
3940
*/
4041
class AlertToast extends LitElement {
4142

‎components/alert/alert.js

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import { RtlMixin } from '../../mixins/rtl/rtl-mixin.js';
1212
* @slot - Default content placed inside of the component
1313
* @fires d2l-alert-close - Dispatched when the alert's close button is clicked
1414
* @fires d2l-alert-button-press - Dispatched when the alert's action button is clicked
15+
* @typedef {Alert} AlertExported
1516
*/
1617
class Alert extends LocalizeCoreElement(RtlMixin(LitElement)) {
1718

0 commit comments

Comments
 (0)
Please sign in to comment.