1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-10-06 17:37:15 +03:00
tabby/tabby-local/README.md
2021-06-29 23:57:04 +02:00

293 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 },
    ...
  ]
})