Skip to content

Commit 58fdbdd

Browse files
committed
#317 make decodeHex public
1 parent fee914a commit 58fdbdd

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

src/core/format/Convert.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ export class Convert {
196196
}
197197

198198
/**
199-
* @internal decode hex to uft8 string
199+
* decode hex to uft8 string
200200
* @param hex - Hex input
201201
* @returns {string}
202202
*/

src/model/message/PlainMessage.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@ export class PlainMessage extends Message {
5050
* Plain message containing an empty string
5151
* @type {PlainMessage}
5252
*/
53-
export const EmptyMessage = PlainMessage.create('');
53+
export const EmptyMessage: PlainMessage = PlainMessage.create('');

src/model/model.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ export * from './receipt/ResolutionType';
8989
export * from './receipt/InflationReceipt';
9090
export * from './receipt/Statement';
9191

92-
//Restriction
92+
// Restriction
9393
export * from './restriction/AccountRestrictions';
9494
export * from './restriction/AccountRestrictionsInfo';
9595
export * from './restriction/AccountRestriction';
@@ -108,6 +108,7 @@ export * from './message/Message';
108108
export * from './message/PlainMessage';
109109
export * from './message/MessageMarker';
110110
export * from './message/MessageType';
111+
111112
// Transaction
112113
export * from './transaction/AccountLinkTransaction';
113114
export * from './transaction/AccountRestrictionTransaction';

0 commit comments

Comments
 (0)