Files
DefinitelyTyped/types/notyf/notyf-tests.ts
2017-11-10 08:52:53 +07:00

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!');