Files
agent/packages/uhk-common/src/models/notification.ts
József Farkas 50e0b64f6e Upgrade to ngrx v4 (#378)
* Update ngrx to v4

* package.json files

* release: Remove zadic references from release script

* fix(user-config): Fix user-config loading

* build: Lock package dependencies

* build: fix app version

* ci: remove build:test step

* fix(user-config): Revert switch-keymap-action modifications

* test(user-config): xit keystroke-action test

* fix(user-config): Fix user config loading

* fix(user-config): Fix user config loading
2017-10-08 18:31:16 +02:00

16 lines
295 B
TypeScript

export enum NotificationType {
Default = 'default',
Success = 'success',
Error = 'error',
Warning = 'warning',
Info = 'info',
Undoable = 'undoable'
}
export interface Notification {
type: NotificationType;
title?: string;
message: string;
extra?: any;
}