Skip to content

Commit

Permalink
update dist with types and commonjs build
Browse files Browse the repository at this point in the history
  • Loading branch information
woodser committed Oct 1, 2023
1 parent 9a2100e commit 1ac9189
Show file tree
Hide file tree
Showing 163 changed files with 30,218 additions and 19 deletions.
260 changes: 260 additions & 0 deletions dist/index.d.ts

Large diffs are not rendered by default.

372 changes: 372 additions & 0 deletions dist/index.js

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions dist/monero_wallet_full.js

Large diffs are not rendered by default.

Binary file modified dist/monero_wallet_full.wasm
Binary file not shown.
16 changes: 8 additions & 8 deletions dist/monero_wallet_keys.js

Large diffs are not rendered by default.

Binary file modified dist/monero_wallet_keys.wasm
Binary file not shown.
2 changes: 1 addition & 1 deletion dist/monero_web_worker.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/monero_web_worker.js.LICENSE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@
* MIT Licensed
*/

/*! https://mths.be/punycode v1.3.2 by @mathias */
/*! https://mths.be/punycode v1.4.1 by @mathias */

/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */

Expand Down
2 changes: 1 addition & 1 deletion dist/monero_web_worker.js.map

Large diffs are not rendered by default.

23 changes: 23 additions & 0 deletions dist/src/main/ts/common/Filter.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
/**
* Base filter.
*
* @private
*/
export default class Filter {
/**
* Indicates if the given value meets the criteria of this filter.
*
* @param val is the value to test
* @return true if the value meets the criteria of this filter, false otherwise
*/
meetsCriteria(val: any): boolean;
/**
* Returns a new array comprised of elements from the given array that meet
* the filter's criteria.
*
* @param filter implements meetsCriteria(elem) to filter the given array
* @param array is the array to apply the filter to
* @return the new array of filtered elements
*/
static apply(filter: Filter, array: any[]): any[];
}
30 changes: 30 additions & 0 deletions dist/src/main/ts/common/Filter.js

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

Loading

0 comments on commit 1ac9189

Please sign in to comment.