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