tabby/terminus-local/README.md
2021-05-16 17:36:33 +02:00

23 lines
299 B
Markdown

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