2021-10-24 22:50:21 +02:00

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
}
}