tabby/tabby-local/README.md

24 lines
293 B
Markdown
Raw Normal View History

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