1
0
mirror of https://github.com/Eugeny/tabby.git synced 2025-08-01 06:56:59 +00:00
Files
tabby/terminus-settings/src/api.ts
Eugene Pankov 8cf7851801 autogen docs
2019-03-07 18:04:03 +01:00

13 lines
202 B
TypeScript

/**
* Extend to add your own settings tabs
*/
export abstract class SettingsTabProvider {
id: string
icon: string
title: string
getComponentType (): any {
return null
}
}