Skip to content

Commit 69cab4d

Browse files
committed
update build (latest typescript changed the output)
1 parent 4e63a0c commit 69cab4d

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

dist/constraint.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import { Variable } from './variable.js';
1212
* @enum {Number}
1313
*/
1414
export declare enum Operator {
15-
Le = 0,
16-
Ge = 1,
15+
Le = 0,// <=
16+
Ge = 1,// >=
1717
Eq = 2
1818
}
1919
/**

dist/constraint.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/maptype.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ declare class IndexedMap<T extends {
99
id(): number;
1010
}, U> {
1111
index: {
12-
[id: number]: number;
12+
[id: number]: number | undefined;
1313
};
14-
array: Pair<T, U>[];
14+
array: Array<Pair<T, U>>;
1515
/**
1616
* Returns the number of items in the array.
1717
*/

dist/maptype.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)