Skip to content

Commit

Permalink
fix(core): implement review notes
Browse files Browse the repository at this point in the history
  • Loading branch information
Dima Karimov authored and KarimovDev committed Sep 27, 2021
1 parent 76b79d4 commit a01fe73
Showing 1 changed file with 5 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,15 @@ import {
} from '../notification-options';

export class NotificationAlert<O, I> {
readonly status: TuiNotification | undefined;
readonly status?: TuiNotification;

readonly hasIcon: boolean | undefined;
readonly hasIcon?: boolean;

readonly autoClose: boolean | number | undefined;
readonly autoClose?: boolean | number;

readonly hasCloseButton: boolean | undefined;
readonly hasCloseButton?: boolean;

readonly label:
| PolymorpheusContent<TuiContextWithImplicit<TuiNotification>>
| undefined;
readonly label?: PolymorpheusContent<TuiContextWithImplicit<TuiNotification>>;

readonly data!: I;

Expand Down

0 comments on commit a01fe73

Please sign in to comment.