mirror of
https://github.com/Eugeny/tabby.git
synced 2026-09-25 16:50:32 -04:00
273 B
273 B
Tabby Local Plugin
- local shells
Using the API:
import { ShellProvider } from 'tabby-local'
Exporting your subclasses:
@NgModule({
...
providers: [
...
{ provide: ShellProvider, useClass: MyShellPlugin, multi: true },
...
]
})