1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-11-13 10:58:00 +03:00
tabby/terminus-local
2021-05-24 22:41:33 +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 Bump slugify from 1.4.7 to 1.5.3 in /terminus-local 2021-05-17 07:36:15 +00: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 Bump slugify from 1.4.7 to 1.5.3 in /terminus-local 2021-05-17 07:36:15 +00: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 },
    ...
  ]
})