Skip to content

Commit

Permalink
fix(toast): export NgbToastModule publicly (#3259)
Browse files Browse the repository at this point in the history
Main export of NgbToastModule was missing, which basically prevented
people to write

```typescript
import {NgbToastModule} from "@ng-bootstrap/ng-bootstrap";
```

Fixes #3258
  • Loading branch information
Benoit Charbonnier committed Jun 28, 2019
1 parent ae1edb1 commit 0d69682
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export {
NgbTimepickerModule,
NgbTimeStruct
} from './timepicker/timepicker.module';
export {NgbToast, NgbToastConfig, NgbToastHeader} from './toast/toast.module';
export {NgbToast, NgbToastConfig, NgbToastHeader, NgbToastModule} from './toast/toast.module';
export {NgbTooltip, NgbTooltipConfig, NgbTooltipModule} from './tooltip/tooltip.module';
export {
NgbHighlight,
Expand Down

0 comments on commit 0d69682

Please sign in to comment.