@blocklet/payment-react
Version:
Reusable react components for payment kit v2
18 lines (17 loc) • 477 B
TypeScript
type Props = {
customer_id?: string;
subscription_id?: string;
currency_id?: string;
include_staking?: boolean;
include_return_staking?: boolean;
include_recovered_from?: boolean;
status?: string;
pageSize?: number;
target?: string;
action?: string;
type?: 'list' | 'table';
onTableDataChange?: Function;
relatedSubscription?: boolean;
};
export default function CustomerInvoiceList(rawProps: Props): JSX.Element;
export {};