Package Exports
- ts-deferred
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (ts-deferred) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
ts-deferred
Very simple implementation of Deferred for TypeScript.
Install
$ npm install --save ts-deferredUsage
in TypeScript
import {Deferred} from "ts-deferred";
let d: Deferred<string> = new Deferred<string>();
let p: Promise<string> = d.promise;
p.then(text => console.log(text));
d.resolve("Hello World!!");in JavaScript
let Deferred = require("ts-deferred").Deferred;
let d = new Deferred();
let p = d.promise;
p.then(function (text) {
console.log(text);
});
d.resolve("Hello World!!");API
promise: Promise<T>
The promise.
resolve(value?: T | PromiseLike<T>): void
Resolves the promise with the given value.
reject(reason?: any): void
Rejects the promise with the given reason.
Dependency
This library has no implementation of Promise<T>.
If the target is es5 or less, it's depends
to es6-promise
or es6-shim.
How to build and test
- Clone this repository.
- Run
npm installto install dependencies. - Run
npm run buildornpm test.
License
MIT