miolo-model 3.0.0-beta.228 → 3.0.0-beta.229

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "miolo-model",
3
- "version": "3.0.0-beta.228",
3
+ "version": "3.0.0-beta.229",
4
4
  "description": "Data models for miolo world",
5
5
  "author": "Donato Lorenzo <donato@afialapis.com>",
6
6
  "contributors": [
@@ -317,6 +317,7 @@ export default class MioloArray extends Array {
317
317
  * @param {any} [thisArg]
318
318
  * @returns {this}
319
319
  */
320
+ // @ts-expect-error
320
321
  filter(predicate, thisArg) {
321
322
  // @ts-expect-error
322
323
  return super.filter(predicate, thisArg)
@@ -337,6 +338,7 @@ export default class MioloArray extends Array {
337
338
  * @param {number} [end]
338
339
  * @returns {this}
339
340
  */
341
+ // @ts-expect-error
340
342
  slice(start, end) {
341
343
  // @ts-expect-error
342
344
  return super.slice(start, end)
@@ -348,6 +350,7 @@ export default class MioloArray extends Array {
348
350
  * @param {...T} items
349
351
  * @returns {this}
350
352
  */
353
+ // @ts-expect-error
351
354
  // biome-ignore lint/correctness/noUnusedFunctionParameters: its ok
352
355
  splice(start, deleteCount, ...items) {
353
356
  // @ts-expect-error
@@ -358,6 +361,7 @@ export default class MioloArray extends Array {
358
361
  /**
359
362
  * @returns {this}
360
363
  */
364
+ // @ts-expect-error
361
365
  reverse() {
362
366
  // @ts-expect-error
363
367
  return super.reverse()