1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-09-22 02:19:55 +03:00
tabby/terminus-local
2021-05-24 17:48:12 +02:00
..
src started separating terminus-electron and terminus-web 2021-05-24 17:48:12 +02:00
.gitignore split terminus-local out of terminus-terminal 2021-05-16 17:36:33 +02:00
package.json split terminus-local out of terminus-terminal 2021-05-16 17:36:33 +02:00
README.md split terminus-local out of terminus-terminal 2021-05-16 17:36:33 +02:00
tsconfig.json split terminus-local out of terminus-terminal 2021-05-16 17:36:33 +02:00
tsconfig.typings.json split terminus-local out of terminus-terminal 2021-05-16 17:36:33 +02:00
webpack.config.js split terminus-local out of terminus-terminal 2021-05-16 17:36:33 +02:00
yarn.lock split terminus-local out of terminus-terminal 2021-05-16 17:36:33 +02:00

Terminus Local Plugin

  • local shells

Using the API:

import { ShellProvider } from 'terminus-local'

Exporting your subclasses:

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