UNPKG

ngx-tailwind-toastify

Version:

A customizable toast notifications library using Tailwind CSS.

11 lines (9 loc) 375 B
import { Provider } from '@angular/core'; import { NgxTailwindToastifyService } from './ngx-tailwind-toastify.service'; import { NgxTailwindToastifyComponent } from './ngx-tailwind-toastify.component'; export function provideNgxTailwindToastify(): Provider { return { provide: NgxTailwindToastifyComponent, useClass: NgxTailwindToastifyComponent, }; }