Skip to content
Closed
Changes from 4 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
8 changes: 8 additions & 0 deletions src/proto/commands_pb.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ export class AddAssetQuantity extends jspb.Message {
getAmount(): string;
setAmount(value: string): void;

getTitle(): string;
setTitle(value: string): void;

serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): AddAssetQuantity.AsObject;
static toObject(includeInstance: boolean, msg: AddAssetQuantity): AddAssetQuantity.AsObject;
Expand All @@ -25,6 +28,7 @@ export namespace AddAssetQuantity {
export type AsObject = {
assetId: string,
amount: string,
title: string,
}
}

Expand Down Expand Up @@ -415,6 +419,9 @@ export class SubtractAssetQuantity extends jspb.Message {
getAmount(): string;
setAmount(value: string): void;

getTitle(): string;
setTitle(value: string): void;

serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): SubtractAssetQuantity.AsObject;
static toObject(includeInstance: boolean, msg: SubtractAssetQuantity): SubtractAssetQuantity.AsObject;
Expand All @@ -429,6 +436,7 @@ export namespace SubtractAssetQuantity {
export type AsObject = {
assetId: string,
amount: string,
title: string,
}
}

Expand Down