Added setting to disable checking for auto updates.
parent
d6c3f89fde
commit
d10a8f0a6f
@ -0,0 +1,11 @@
|
||||
export interface BaseConfig {
|
||||
set(keyPath: string, value: any): void
|
||||
get(keyPath: string): any | undefined
|
||||
remove(): void
|
||||
}
|
||||
|
||||
interface Options {
|
||||
allowMalformedOnStartup: boolean
|
||||
}
|
||||
|
||||
export function start(name: string, targetPath: string, options: Options): BaseConfig;
|
@ -0,0 +1,3 @@
|
||||
import { BaseConfig } from "./base_config";
|
||||
|
||||
type UserConfig = BaseConfig
|
Loading…
Reference in New Issue