Get the default sketchbook path from backend

Signed-off-by: jbicker <jan.bicker@typefox.io>
This commit is contained in:
jbicker
2019-08-26 15:59:18 +02:00
parent d809daa20a
commit d5589c435f
8 changed files with 65 additions and 27 deletions

View File

@@ -0,0 +1,12 @@
export const ConfigServicePath = '/services/config-service';
export const ConfigService = Symbol('ConfigService');
export interface ConfigService {
getConfiguration(): Promise<Config>;
}
export interface Config {
sketchDirPath: string;
dataDirPath: string;
}