mirror of
https://github.com/Eugeny/tabby.git
synced 2025-10-03 21:44:54 +00:00
17 lines
473 B
TypeScript
17 lines
473 B
TypeScript
/* eslint-disable @typescript-eslint/no-extraneous-class */
|
|
import { NgModule } from '@angular/core'
|
|
import { ToastrModule } from 'ngx-toastr'
|
|
import { TerminalDecorator } from 'tabby-terminal'
|
|
|
|
import { AutoSudoPasswordDecorator } from './decorator'
|
|
|
|
@NgModule({
|
|
imports: [
|
|
ToastrModule,
|
|
],
|
|
providers: [
|
|
{ provide: TerminalDecorator, useClass: AutoSudoPasswordDecorator, multi: true },
|
|
],
|
|
})
|
|
export default class AutoSudoPasswordModule { }
|