1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-09-21 18:07:54 +03:00
tabby/tabby-settings
2021-07-17 16:39:08 +02:00
..
src web: added proper platform detection and hotkey handling 2021-07-17 16:39:08 +02:00
package.json plugin version bump 2021-07-17 00:54:38 +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 Bump utils-decorators from 1.8.3 to 1.10.0 in /tabby-settings 2021-07-04 13:10:04 +00: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 },
    ...
  ]
})