btcpay-greenfield-node-client
Version:
## Installation
11 lines (10 loc) • 325 B
TypeScript
import type { WebhookInvoiceEvent } from './WebhookInvoiceEvent';
/**
* Callback sent if the `type` is `InvoiceProcessing`
*/
export declare type WebhookInvoiceProcessingEvent = (WebhookInvoiceEvent & {
/**
* Whether this invoice has received more money than expected
*/
overPaid?: boolean;
});