UNPKG

bitpay-sdk

Version:

Complete version of the NodeJS library for the new cryptographically secure BitPay API

14 lines (13 loc) 277 B
export interface ItemInterface { id?: string; description?: string; price: number; quantity: number; } export declare class Item implements ItemInterface { description?: string; id?: string; quantity: number; price: number; constructor(); }