Merge branch 'clearnet' of https://github.com/loki-project/loki-messenger into patchopensnapps
commit
e4d762a358
@ -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