taler-util: remove legacy member

This commit is contained in:
Florian Dold 2022-11-01 12:20:50 +01:00
parent 3c50b1233e
commit b513665408
No known key found for this signature in database
GPG Key ID: D2E4F00F29D02A4B

View File

@ -352,7 +352,7 @@ export const codecForConfirmReserveRequest = (): Codec<ConfirmReserveRequest> =>
/**
* Wire coins to the user's own bank account.
*/
export class ReturnCoinsRequest {
export interface ReturnCoinsRequest {
/**
* The amount to wire.
*/
@ -368,12 +368,6 @@ export class ReturnCoinsRequest {
* receive the funds.
*/
senderWire?: string;
/**
* Verify that a value matches the schema of this class and convert it into a
* member.
*/
static checked: (obj: any) => ReturnCoinsRequest;
}
export interface PrepareRefundResult {