tabby/tabby-local/README.md
2021-06-29 23:57:04 +02:00

23 lines
293 B
Markdown

Tabby Local Plugin
---------------------
* local shells
Using the API:
```ts
import { ShellProvider } from 'tabby-local'
```
Exporting your subclasses:
```ts
@NgModule({
...
providers: [
...
{ provide: ShellProvider, useClass: MyShellPlugin, multi: true },
...
]
})
```