Skip to content

Commit

Permalink
Previous commit missed a handful of compiled files.
Browse files Browse the repository at this point in the history
  • Loading branch information
T99 committed Oct 2, 2019
1 parent 633de0d commit a1cd78e
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .d.ts/abstract-list.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { IIterator } from "iter-over";
export declare abstract class AbstractList<E> {
abstract add(element: E): void;
addAll(elements: E[]): void;
abstract get(index: number): E;
abstract get(index: number): E | undefined;
abstract remove(element: E): void;
abstract size(): number;
abstract contains(element: E): boolean;
Expand Down
3 changes: 2 additions & 1 deletion js/abstract-list.js

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

2 changes: 1 addition & 1 deletion js/abstract-list.js.map

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

3 changes: 2 additions & 1 deletion js/main.js

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

2 changes: 1 addition & 1 deletion js/main.js.map

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

0 comments on commit a1cd78e

Please sign in to comment.