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

Commit

Permalink
Fixed missing files.
Browse files Browse the repository at this point in the history
  • Loading branch information
Oren (electricessence) committed Oct 17, 2016
1 parent b30fb8b commit 8d787ff
Show file tree
Hide file tree
Showing 84 changed files with 291 additions and 119 deletions.
2 changes: 1 addition & 1 deletion bower.json
@@ -1,6 +1,6 @@
{
"name": "typescript-dotnet",
"version": "3.2.7",
"version": "4.0.1",
"ignore": [
".bowercc",
".gitignore",
Expand Down
1 change: 1 addition & 0 deletions dist/amd/System/Integer.d.ts
Expand Up @@ -9,6 +9,7 @@ export declare module Integer {
function random(maxExclusive: number): number;
module random {
function next(boundary: number, inclusive?: boolean): number;
function set(count: number, boundary: number, inclusive?: boolean): number[];
function nextInRange(min: number, max: number, inclusive?: boolean): number;
function select<T>(source: IArray<T>): T | undefined;
module select {
Expand Down
2 changes: 1 addition & 1 deletion dist/amd/System/Integer.js

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

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

Large diffs are not rendered by default.

3 changes: 0 additions & 3 deletions dist/amd/System/Threading/Tasks/eval.d.ts

This file was deleted.

5 changes: 0 additions & 5 deletions dist/amd/System/Threading/Tasks/eval.js

This file was deleted.

1 change: 0 additions & 1 deletion dist/amd/System/Threading/Tasks/eval.js.map

This file was deleted.

3 changes: 0 additions & 3 deletions dist/commonjs/System/Threading/Tasks/eval.d.ts

This file was deleted.

14 changes: 0 additions & 14 deletions dist/commonjs/System/Threading/Tasks/eval.js

This file was deleted.

1 change: 0 additions & 1 deletion dist/commonjs/System/Threading/Tasks/eval.js.map

This file was deleted.

6 changes: 5 additions & 1 deletion dist/es6/System.Linq/Enumerable.d.ts
@@ -1,5 +1,9 @@
import {
Action, Predicate, Selector, EqualityComparison, Comparison,
Action,
Predicate,
Selector,
EqualityComparison,
Comparison,
Closure
} from "../System/FunctionTypes";
import {IEnumerableOrArray} from "../System/Collections/IEnumerableOrArray";
Expand Down
4 changes: 2 additions & 2 deletions dist/es6/System/Collections/Array/Sort.d.ts
@@ -1,3 +1,3 @@
import { createComparer } from "./Sort/createComparer";
export * from "./Sort/quickSort";
import { createComparer } from "./Sorting/createComparer";
export * from "./Sorting/quickSort";
export { createComparer, createComparer as default, createComparer as by };
4 changes: 2 additions & 2 deletions dist/es6/System/Collections/Array/Sort.js

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

2 changes: 1 addition & 1 deletion dist/es6/System/Collections/Array/Sort.js.map

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

1 change: 0 additions & 1 deletion dist/es6/System/Collections/Array/Sort/quickSort.js.map

This file was deleted.

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

6 changes: 6 additions & 0 deletions dist/es6/System/Collections/Array/Sorting/insertionSort.d.ts
@@ -0,0 +1,6 @@
/*!
* @author electricessence / https://github.com/electricessence/
* Licensing: MIT https://github.com/electricessence/TypeScript.NET/blob/master/LICENSE.md
*/
import { Primitive } from "../../../Primitive";
export declare function insertionSort<T extends Primitive>(target: T[]): T[];
21 changes: 21 additions & 0 deletions dist/es6/System/Collections/Array/Sorting/insertionSort.js

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

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

8 changes: 8 additions & 0 deletions dist/es6/System/Collections/Array/Sorting/mergeSort.d.ts
@@ -0,0 +1,8 @@
/*!
* @author Sebastian Belmar / https://github.com/sebabelmar/
* @author electricessence / https://github.com/electricessence/
* Licensing: MIT https://github.com/electricessence/TypeScript.NET/blob/master/LICENSE.md
* https://en.wikipedia.org/wiki/Merge_sort
*/
import { Primitive } from "../../../Primitive";
export declare function mergeSort<T extends Primitive>(target: T[]): T[];
36 changes: 36 additions & 0 deletions dist/es6/System/Collections/Array/Sorting/mergeSort.js

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

0 comments on commit 8d787ff

Please sign in to comment.