Skip to content

Commit 5ee5da7

Browse files
committed
mina-signer/memo: rename imported Binable as BinableT
See trivago/prettier-plugin-sort-imports#287
1 parent a7cf0f1 commit 5ee5da7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/mina-signer/src/memo.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import {
2-
Binable,
2+
Binable as BinableT,
33
defineBinable,
44
stringFromBytes,
55
stringLengthInBytes,
@@ -43,7 +43,7 @@ function hash(memo: string) {
4343
}
4444

4545
const SIZE = 34;
46-
const Binable: Binable<string> = defineBinable({
46+
const Binable: BinableT<string> = defineBinable({
4747
toBytes(memo) {
4848
return stringToBytes(memo);
4949
},

0 commit comments

Comments
 (0)