get extras()

in src/logic/BrazeCards.ts [87:95]


    get extras(): Extras {
        const data = this.card.extras;
        // since empty extras is impossible, let's add this case to eliminate undefined from the type
        if (data === undefined) {
            return {};
        } else {
            return data;
        }
    }