mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-10 06:20:03 +00:00
16 lines
409 B
TypeScript
16 lines
409 B
TypeScript
import { Injectable } from '@angular/core'
|
|
import { SettingsTabProvider } from 'tabby-settings'
|
|
|
|
import { PluginsSettingsTabComponent } from './components/pluginsSettingsTab.component'
|
|
|
|
/** @hidden */
|
|
@Injectable()
|
|
export class PluginsSettingsTabProvider extends SettingsTabProvider {
|
|
id = 'plugins'
|
|
title = 'Plugins'
|
|
|
|
getComponentType (): any {
|
|
return PluginsSettingsTabComponent
|
|
}
|
|
}
|