mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-27 06:49:53 +00:00
9 lines
137 B
TypeScript
9 lines
137 B
TypeScript
export abstract class SettingsTabProvider {
|
|
id: string
|
|
title: string
|
|
|
|
getComponentType (): any {
|
|
return null
|
|
}
|
|
}
|