angularプロジェクトでnpmが開始した後にこのエラーが発生します。
app/app.component.ts(12,7): エラー TS2304: 名前 'swal' が見つかりません。app/app.component.ts(21,7): エラー TS2304: 名前 'swal' が見つかりません。
angularプロジェクトを作成しました。app.component.ts 内にスイート アラート コードを追加しました
export class AppComponent {
deleteRow() {
swal({
title: 'Are you sure?',
text: "You won't be able to revert this!",
type: 'warning',
showCancelButton: true,
confirmButtonColor: '#3085d6',
cancelButtonColor: '#d33',
confirmButtonText: 'Yes, delete it!'
}).then(function() {
swal(
'Deleted!',
'Your file has been deleted.',
'success'
);
})
}
}
やった
npm install sweetalert2 --save
また、index.htmlにパスを追加しました
<script src="node_modules/sweetalert2/dist/sweetalert2.min.js"></script>
<link rel="stylesheet" type="text/css" href="node_modules/sweetalert2/dist/sweetalert2.css">