Merge pull request #967 from Mikunj/auto-update-setting
Added setting to disable checking for auto updates.pull/991/head
commit
54c5f31433
@ -0,0 +1,15 @@
|
||||
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