Lint
parent
d10a8f0a6f
commit
86b427cc4d
@ -1,11 +1,15 @@
|
||||
export interface BaseConfig {
|
||||
set(keyPath: string, value: any): void
|
||||
get(keyPath: string): any | undefined
|
||||
remove(): void
|
||||
set(keyPath: string, value: any): void;
|
||||
get(keyPath: string): any | undefined;
|
||||
remove(): void;
|
||||
}
|
||||
|
||||
interface Options {
|
||||
allowMalformedOnStartup: boolean
|
||||
allowMalformedOnStartup: boolean;
|
||||
}
|
||||
|
||||
export function start(name: string, targetPath: string, options: Options): BaseConfig;
|
||||
export function start(
|
||||
name: string,
|
||||
targetPath: string,
|
||||
options: Options
|
||||
): BaseConfig;
|
||||
|
@ -1,3 +1,3 @@
|
||||
import { BaseConfig } from "./base_config";
|
||||
import { BaseConfig } from './base_config';
|
||||
|
||||
type UserConfig = BaseConfig
|
||||
type UserConfig = BaseConfig;
|
||||
|
Loading…
Reference in New Issue