Get dashboard converted

This commit is contained in:
Dane Everitt 2018-12-30 13:41:24 -08:00
parent 33e09b5619
commit 11a70b0343
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
8 changed files with 332 additions and 325 deletions

View file

@ -1,18 +1,19 @@
import {ComponentOptions} from "vue";
import {Vue} from "vue/types/vue";
import {TranslateResult} from "vue-i18n";
export interface FlashInterface {
flash(message: string, title: string, severity: string): void;
flash(message: string | TranslateResult, title: string, severity: string): void;
clear(): void,
success(message: string): void,
success(message: string | TranslateResult): void,
info(message: string): void,
info(message: string | TranslateResult): void,
warning(message: string): void,
warning(message: string | TranslateResult): void,
error(message: string): void,
error(message: string | TranslateResult): void,
}
class Flash implements FlashInterface {