Terminus core
npm install terminus-coreTerminus Core Plugin
--------------------
See also: Settings plugin API, Terminal plugin API, Local terminal API
* tabbed interface services
* toolbar UI
* config file management
* hotkeys
* tab recovery
* logging
* theming
Using the API:
``ts`
import { AppService, TabContextMenuItemProvider } from 'terminus-core'
Exporting your subclasses:
`ts``
@NgModule({
...
providers: [
...
{ provide: TabContextMenuItemProvider, useClass: MyContextMenu, multi: true },
...
]
})