Commit f84de00b authored by nanahira's avatar nanahira

missing

parent 310248f7
Pipeline #13311 passed with stages
in 2 minutes and 11 seconds
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { ToastComponent } from './toast/toast.component';
import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
@NgModule({
declarations: [AppComponent, ToastComponent],
imports: [BrowserModule, AppRoutingModule, NgbModule],
providers: [],
bootstrap: [AppComponent],
})
export class AppModule {}
......@@ -4,6 +4,7 @@ export interface ToastInfo {
id: number;
header: string;
body: string;
persist?: boolean;
classname?: string;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment