Skip to content
This repository was archived by the owner on May 24, 2022. It is now read-only.

chore: Fix docs generation #218

Merged
merged 1 commit into from
Jun 11, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/abi/src/encoder/mediate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ class Mediate {
case 'fixedArray':
return (this._value as Mediate[])
.map((mediate, index) =>
// @ts-ignore toString doesn't take any args
mediate
.init(Mediate.offsetFor(this._value as Mediate[], index))
// @ts-ignore toString doesn't take any args
Expand All @@ -113,6 +114,7 @@ class Mediate {
case 'fixedArray':
return (this._value as Mediate[])
.map((mediate: Mediate, index: number) =>
// @ts-ignore toString doesn't take any args
mediate
.closing(Mediate.offsetFor(this._value as Mediate[], index))
// @ts-ignore toString doesn't take any args
Expand All @@ -124,6 +126,7 @@ class Mediate {
const prefix = padU32((this._value as Mediate[]).length);
const inits = (this._value as Mediate[])
.map((mediate: Mediate, index: number) =>
// @ts-ignore toString doesn't take any args
mediate
.init(
offset + Mediate.offsetFor(this._value as Mediate[], index) + 32
Expand All @@ -134,6 +137,7 @@ class Mediate {
.join('');
const closings = (this._value as Mediate[])
.map((mediate: Mediate, index: number) =>
// @ts-ignore toString doesn't take any args
mediate
.closing(
offset + Mediate.offsetFor(this._value as Mediate[], index)
Expand Down