mirror of
https://github.com/Eugeny/tabby
synced 2024-12-16 08:12:41 +00:00
8 lines
137 B
TypeScript
8 lines
137 B
TypeScript
export abstract class SettingsTabProvider {
|
|
id: string
|
|
title: string
|
|
|
|
getComponentType (): any {
|
|
return null
|
|
}
|
|
}
|