arduino-ide/arduino-ide-extension/src/browser/workspace-service-ext.ts
Akos Kitta d346b81331 Changed the way we init default locations.
For the `data` and `downloads`.

Signed-off-by: Akos Kitta <kittaakos@typefox.io>
2019-05-08 22:31:09 +02:00

6 lines
213 B
TypeScript

export const WorkspaceServiceExtPath = '/services/workspace-service-ext';
export const WorkspaceServiceExt = Symbol('WorkspaceServiceExt');
export interface WorkspaceServiceExt {
roots(): Promise<string[]>;
}