mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-29 00:51:29 +08:00
12 lines
224 B
TypeScript
12 lines
224 B
TypeScript
import Notyf = require("notyf");
|
|
|
|
const options = {
|
|
delay: 1000,
|
|
alertIcon: 'fa fa-bell',
|
|
confirmIcon: 'fa fa-exclamation'
|
|
};
|
|
|
|
const notyf = new Notyf(options);
|
|
notyf.alert('Danger!');
|
|
notyf.confirm('Success!');
|