1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-09-11 13:13:59 +03:00
tabby/tabby-local/README.md
2021-12-08 19:54:26 +01:00

23 lines
273 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 },
...
]
})
```