Skip to content

Commit

Permalink
Updated LKG
Browse files Browse the repository at this point in the history
  • Loading branch information
rbuckton committed May 1, 2015
1 parent 60a0a49 commit d57fe72
Show file tree
Hide file tree
Showing 11 changed files with 12,971 additions and 4,323 deletions.
10 changes: 9 additions & 1 deletion bin/lib.core.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ interface Function {
}

interface FunctionConstructor {
/**
/**
* Creates a new function.
* @param args A list of arguments the function accepts.
*/
Expand Down Expand Up @@ -1164,3 +1164,11 @@ interface ArrayConstructor {
}

declare var Array: ArrayConstructor;

interface IPromise<T> {
then<TResult>(onfulfilled: (value: T) => TResult | IPromise<TResult>, onrejected: (reason: any) => TResult | IPromise<TResult>): IPromise<TResult>;
}

interface IPromiseConstructor {
new <T>(init: (resolve: (value: T | IPromise<T>) => void, reject: (reason: any) => void) => void): IPromise<T>;
}
10 changes: 9 additions & 1 deletion bin/lib.core.es6.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ interface Function {
}

interface FunctionConstructor {
/**
/**
* Creates a new function.
* @param args A list of arguments the function accepts.
*/
Expand Down Expand Up @@ -1164,6 +1164,14 @@ interface ArrayConstructor {
}

declare var Array: ArrayConstructor;

interface IPromise<T> {
then<TResult>(onfulfilled: (value: T) => TResult | IPromise<TResult>, onrejected: (reason: any) => TResult | IPromise<TResult>): IPromise<TResult>;
}

interface IPromiseConstructor {
new <T>(init: (resolve: (value: T | IPromise<T>) => void, reject: (reason: any) => void) => void): IPromise<T>;
}
declare type PropertyKey = string | number | Symbol;

interface Symbol {
Expand Down
10 changes: 9 additions & 1 deletion bin/lib.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ interface Function {
}

interface FunctionConstructor {
/**
/**
* Creates a new function.
* @param args A list of arguments the function accepts.
*/
Expand Down Expand Up @@ -1165,6 +1165,14 @@ interface ArrayConstructor {

declare var Array: ArrayConstructor;

interface IPromise<T> {
then<TResult>(onfulfilled: (value: T) => TResult | IPromise<TResult>, onrejected: (reason: any) => TResult | IPromise<TResult>): IPromise<TResult>;
}

interface IPromiseConstructor {
new <T>(init: (resolve: (value: T | IPromise<T>) => void, reject: (reason: any) => void) => void): IPromise<T>;
}

/////////////////////////////
/// IE10 ECMAScript Extensions
/////////////////////////////
Expand Down
10 changes: 9 additions & 1 deletion bin/lib.es6.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ interface Function {
}

interface FunctionConstructor {
/**
/**
* Creates a new function.
* @param args A list of arguments the function accepts.
*/
Expand Down Expand Up @@ -1164,6 +1164,14 @@ interface ArrayConstructor {
}

declare var Array: ArrayConstructor;

interface IPromise<T> {
then<TResult>(onfulfilled: (value: T) => TResult | IPromise<TResult>, onrejected: (reason: any) => TResult | IPromise<TResult>): IPromise<TResult>;
}

interface IPromiseConstructor {
new <T>(init: (resolve: (value: T | IPromise<T>) => void, reject: (reason: any) => void) => void): IPromise<T>;
}
declare type PropertyKey = string | number | Symbol;

interface Symbol {
Expand Down
7,601 changes: 5,849 additions & 1,752 deletions bin/tsc.js

Large diffs are not rendered by default.

18 changes: 18 additions & 0 deletions bin/tslib.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/*! *****************************************************************************
Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
this file except in compliance with the License. You may obtain a copy of the
License at http://www.apache.org/licenses/LICENSE-2.0
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
MERCHANTABLITY OR NON-INFRINGEMENT.
See the Apache Version 2.0 License for specific language governing permissions
and limitations under the License.
***************************************************************************** */

export function __extends(b: any, d: any): void;
export function __awaiter(generator: any): any;
export function __generator(body: any): any;
Loading

0 comments on commit d57fe72

Please sign in to comment.