mirror of
https://github.com/Eugeny/tabby.git
synced 2025-10-05 22:44:55 +00:00
9 lines
224 B
TypeScript
9 lines
224 B
TypeScript
import { TerminalColorScheme } from './interfaces'
|
|
|
|
/**
|
|
* Extend to add more terminal color schemes
|
|
*/
|
|
export abstract class TerminalColorSchemeProvider {
|
|
abstract async getSchemes (): Promise<TerminalColorScheme[]>
|
|
}
|