Shim Thenable<T>

This commit is contained in:
Josh Johnson 2016-01-13 17:55:28 -05:00
parent cb54a079d7
commit a263b85003
1 changed files with 3 additions and 0 deletions

3
typings/thenable/thenable.d.ts vendored Normal file
View File

@ -0,0 +1,3 @@
declare class Thenable<T> extends Promise<T> {
// shim for vscode's Thenable<T>
}