File size: 215 Bytes
c09f67c
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import type { GetDocumentRequest, GetInvoiceOrReceiptResponse } from "./types";

export interface Processor {
  getInvoiceOrReceipt?: (
    params: GetDocumentRequest,
  ) => Promise<GetInvoiceOrReceiptResponse>;
}