document.querySelector('.donate-menu').style.display = 'none'; => ERROR: Property 'style' does not exist on type 'Element'.
FIX below
(<HTMLElement>document.querySelector('.donate-menu')).style.display = 'none';