mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-30 09:35:39 -05:00
14 lines
582 B
TypeScript
14 lines
582 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
export class Deferred<T> {
|
|
promise: Promise<T> = new Promise<T>((resolve, reject) => {
|
|
this.resolve = resolve;
|
|
this.reject = reject;
|
|
});;
|
|
resolve!: (value?: T | PromiseLike<T>) => void;
|
|
reject!: (reason?: any) => void;
|
|
}
|