1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-09-21 09:58:09 +03:00
tabby/tabby-settings
2021-08-01 10:17:53 +02:00
..
src allow modifier-only hotkeys 2021-07-31 17:18:03 +02:00
package.json bumped plugins 2021-08-01 10:17:53 +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 settings: added release notes 2021-07-18 16:48:13 +02:00

Tabby Settings Plugin

  • tabbed settings interface

Using the API:

import { SettingsTabProvider } from 'tabby-settings'

Exporting your subclasses:

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