/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45/**6* Thenable is a common denominator between ES6 promises, Q, jquery.Deferred, WinJS.Promise,7* and others. This API makes no assumption about what promise library is being used which8* enables reusing existing code without migrating to a specific promise implementation. Still,9* we recommend the use of native promises which are available in VS Code.10*/11interface Thenable<T> extends PromiseLike<T> { }121314