Skip to content
This repository has been archived by the owner on Dec 25, 2018. It is now read-only.

Commit

Permalink
This marks a huge update to remove /// triple slash comments that cou…
Browse files Browse the repository at this point in the history
…ld interfere with normal usage in node. All imports have been replaced with standard ES6 style import.
  • Loading branch information
electricessence committed May 19, 2016
1 parent f9b8db8 commit c4e0c8c
Show file tree
Hide file tree
Showing 1,334 changed files with 4,164 additions and 3,921 deletions.
2 changes: 1 addition & 1 deletion bower.json
@@ -1,6 +1,6 @@
{
"name": "typescript-dotnet",
"version": "2.12.3",
"version": "2.13.0",
"ignore": [
".bowercc",
".gitignore",
Expand Down
20 changes: 9 additions & 11 deletions dist/amd/System.Linq/Linq.d.ts
@@ -1,19 +1,17 @@
/// <reference path="../../../source/System/Primitive.d.ts" />
/// <reference path="../../../source/System/FunctionTypes.d.ts" />
/// <reference path="../../../source/System/Collections/Array/IArray.d.ts" />
/// <reference path="../../../source/System/Collections/Enumeration/IEnumerator.d.ts" />
/// <reference path="../../../source/System/Collections/Enumeration/IEnumerable.d.ts" />
/// <reference path="../../../source/System/Collections/Dictionaries/IDictionary.d.ts" />
/// <reference path="../../../source/System/IComparer.d.ts" />
/// <reference path="../../../source/System/Collections/Sorting/Order.d.ts" />
/// <reference path="../../../source/System/Collections/IEnumerableOrArray.d.ts" />
/*!
* @author electricessence / https://github.com/electricessence/
* Original: http://linqjs.codeplex.com/
* Licensing: MIT https://github.com/electricessence/TypeScript.NET/blob/master/LICENSE.md
*/
import Dictionary from "../System/Collections/Dictionaries/Dictionary";
import DisposableBase from "../System/Disposable/DisposableBase";
import { Dictionary } from "../System/Collections/Dictionaries/Dictionary";
import { DisposableBase } from "../System/Disposable/DisposableBase";
import { IEnumerator } from "../System/Collections/Enumeration/IEnumerator";
import { IEnumerable } from "../System/Collections/Enumeration/IEnumerable";
import { Action, Predicate, Selector, EqualityComparison, Comparison } from "../System/FunctionTypes";
import { IEnumerableOrArray } from "../System/Collections/IEnumerableOrArray";
import { IArray } from "../System/Collections/Array/IArray";
import { IMap } from "../System/Collections/Dictionaries/IDictionary";
import { Comparable } from "../System/IComparable";
export declare const enum EnumerableAction {
Break = 0,
Return = 1,
Expand Down
4 changes: 2 additions & 2 deletions dist/amd/System.Linq/Linq.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/amd/System.Linq/Linq.js.map

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions dist/amd/System/Collections/Array/Compare.d.ts
@@ -1,11 +1,11 @@
/// <reference path="../../../../../source/System/Collections/Array/IArray.d.ts" />
/// <reference path="../../../../../source/System/FunctionTypes.d.ts" />
/// <reference path="../../../../../source/System/Primitive.d.ts" />
/// <reference path="../../../../../source/System/IComparable.d.ts" />
/*!
* @author electricessence / https://github.com/electricessence/
* Licensing: MIT https://github.com/electricessence/TypeScript.NET/blob/master/LICENSE.md
*/
import { Primitive } from "../../Primitive";
import { EqualityComparison, Comparison } from "../../FunctionTypes";
import { IArray } from "./IArray";
import { IComparable } from "../../IComparable";
export declare function areAllEqual(arrays: any[][], strict?: boolean, equalityComparer?: EqualityComparison<any>): boolean;
export declare function areEqual<T>(a: IArray<T>, b: IArray<T>, strict?: boolean, equalityComparer?: EqualityComparison<T>): boolean;
export declare function areEquivalent<T extends Primitive>(a: IArray<T>, b: IArray<T>): boolean;
Expand Down
2 changes: 1 addition & 1 deletion dist/amd/System/Collections/Array/Compare.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c4e0c8c

Please sign in to comment.