mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-08 21:40:03 +00:00
15 lines
241 B
TypeScript
15 lines
241 B
TypeScript
/**
|
|
* Extend to add your own settings tabs
|
|
*/
|
|
export abstract class SettingsTabProvider {
|
|
id: string
|
|
icon: string
|
|
title: string
|
|
weight = 0
|
|
prioritized = false
|
|
|
|
getComponentType (): any {
|
|
return null
|
|
}
|
|
}
|