mirror of
https://github.com/Eugeny/tabby.git
synced 2024-11-28 05:36:31 +03:00
13 lines
464 B
TypeScript
13 lines
464 B
TypeScript
import { ConfigProvider } from './api/configProvider'
|
|
import { Platform } from './services/hostApp.service'
|
|
|
|
/** @hidden */
|
|
export class CoreConfigProvider extends ConfigProvider {
|
|
platformDefaults = {
|
|
[Platform.macOS]: require('./configDefaults.macos.yaml'),
|
|
[Platform.Windows]: require('./configDefaults.windows.yaml'),
|
|
[Platform.Linux]: require('./configDefaults.linux.yaml'),
|
|
}
|
|
defaults = require('./configDefaults.yaml')
|
|
}
|