mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-09-12 21:35:40 -05:00
17 lines
526 B
TypeScript
17 lines
526 B
TypeScript
import { Component, EventEmitter, Output } from '@angular/core'
|
|
import { NgbAlertModule } from '@ng-bootstrap/ng-bootstrap'
|
|
import { TourService } from 'ngx-ui-tour-ng-bootstrap'
|
|
|
|
@Component({
|
|
selector: 'pngx-welcome-widget',
|
|
templateUrl: './welcome-widget.component.html',
|
|
styleUrls: ['./welcome-widget.component.scss'],
|
|
imports: [NgbAlertModule],
|
|
})
|
|
export class WelcomeWidgetComponent {
|
|
constructor(public readonly tourService: TourService) {}
|
|
|
|
@Output()
|
|
dismiss: EventEmitter<boolean> = new EventEmitter()
|
|
}
|