1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-09-21 01:47:28 +03:00
tabby/tabby-local
2021-10-01 18:56:28 +02:00
..
src fixed admin tabs on windows - fixes #4669, fixes #4601, fixed #4594 2021-10-01 18:56:28 +02:00
package.json pull utils-decorators dep up 2021-09-24 23:59:34 +02:00
README.md project rename 2021-06-29 23:57:04 +02:00
tsconfig.json project rename 2021-06-29 23:57:04 +02:00
tsconfig.typings.json project rename 2021-06-29 23:57:04 +02:00
webpack.config.js project rename 2021-06-29 23:57:04 +02:00
yarn.lock pull utils-decorators dep up 2021-09-24 23:59:34 +02:00

Tabby Local Plugin

  • local shells

Using the API:

import { ShellProvider } from 'tabby-local'

Exporting your subclasses:

@NgModule({
  ...
  providers: [
    ...
    { provide: ShellProvider, useClass: MyShellPlugin, multi: true },
    ...
  ]
})