export default interface BillItem {
    category: string;
    amount: number;
    transaction_id: string;
    index: number;
    charges: number;
    type: string;
    title: string;
    id: string;
    href: string;
    post_date: string;
}
