Interface ReceiptContent

interface ReceiptContent {
    [eventId: string]: {
        [key in ReceiptType | string]: {
            [userId: string]: Receipt;
        }
    };
}

Indexable

[eventId: string]: {
    [key in ReceiptType | string]: {
        [userId: string]: Receipt;
    }
}

Generated using TypeDoc