mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-19 19:09:54 +00:00
13 lines
202 B
TypeScript
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
|
|
}
|
|
}
|