Skip to content

Commit

Permalink
update build (latest typescript changed the output)
Browse files Browse the repository at this point in the history
  • Loading branch information
trusktr committed Sep 17, 2024
1 parent 4e63a0c commit 69cab4d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions dist/constraint.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import { Variable } from './variable.js';
* @enum {Number}
*/
export declare enum Operator {
Le = 0,
Ge = 1,
Le = 0,// <=
Ge = 1,// >=
Eq = 2
}
/**
Expand Down
2 changes: 1 addition & 1 deletion dist/constraint.d.ts.map

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

4 changes: 2 additions & 2 deletions dist/maptype.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ declare class IndexedMap<T extends {
id(): number;
}, U> {
index: {
[id: number]: number;
[id: number]: number | undefined;
};
array: Pair<T, U>[];
array: Array<Pair<T, U>>;
/**
* Returns the number of items in the array.
*/
Expand Down
2 changes: 1 addition & 1 deletion dist/maptype.d.ts.map

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

0 comments on commit 69cab4d

Please sign in to comment.