expose a withScmViewletProgress-API

This commit is contained in:
Johannes Rieken
2017-01-16 18:11:12 +01:00
parent 1f102d1c37
commit 0c46df976e
4 changed files with 27 additions and 9 deletions

View File

@@ -185,7 +185,7 @@ export abstract class MainThreadOutputServiceShape {
}
export abstract class MainThreadProgressShape {
$progressStart(handle: number): void { throw ni(); }
$progressStart(handle: number, location: string): void { throw ni(); }
$progressReport(handle: number, message: string): void { throw ni(); }
$progressEnd(handle: number, err?: any): void { throw ni(); }
}