mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-21 03:49:57 +00:00
12 lines
246 B
TypeScript
12 lines
246 B
TypeScript
import { Component } from '@angular/core'
|
|
|
|
export declare type ComponentType = new (...args: any[]) => Component
|
|
|
|
export abstract class SettingsTabProvider {
|
|
title: string
|
|
|
|
getComponentType (): ComponentType {
|
|
return null
|
|
}
|
|
}
|