AlertDialog
A dialog that shows a message. Use it from the client module like void alert('Save failed.').
ts
interface AlertDialogSignature {}
class AlertDialog extends HTMLDialogElement<AlertDialogSignature> {}
declare global {
interface HTMLDialogElement {
is: 'alert-dialog' // <dialog is="alert-dialog"></dialog>
}
}Relationships
Conforms To
HTMLDialogElement