1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-10-06 17:37:15 +03:00
tabby/tabby-local
2021-08-19 23:14:12 +02:00
..
src set default cancel button in message boxes 2021-08-02 21:01:35 +02:00
package.json moved deep-equal dependency out 2021-08-19 23:14:12 +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 moved deep-equal dependency out 2021-08-19 23:14:12 +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 },
    ...
  ]
})