Skip to content
Ron Buckton edited this page Jan 15, 2015 · 3 revisions

The promise module exports the primary classes needed for promise asynchrony.

Syntax

declare module "promise" {
  export interface IPromise<T>;
  export class Promise<T>;
}

Exports

interface IPromise<T>
Describes a compatible promise implementation.
class Promise<T>
Represents the completion of an asynchronous operation.

Imports

Imported By

Requirements

  • Supported Platforms: TBD
  • Module: promise
  • Library: promise.ts

See Also

Clone this wiki locally