mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-23 04:49:59 +00:00
9 lines
218 B
TypeScript
9 lines
218 B
TypeScript
import { TerminalColorScheme } from './interfaces'
|
|
|
|
/**
|
|
* Extend to add more terminal color schemes
|
|
*/
|
|
export abstract class TerminalColorSchemeProvider {
|
|
abstract getSchemes (): Promise<TerminalColorScheme[]>
|
|
}
|