declare const fuckAdBlock: any; export default ($root: any) => { require('fuckadblock'); function adBlockDetected() { $root.$dialog({ title: $root.$t('@.adblock.detected'), text: $root.$t('@.adblock.warning'), actins: [{ text: 'OK' }] }); } if (fuckAdBlock === undefined) { adBlockDetected(); } else { fuckAdBlock.onDetected(adBlockDetected); } };