/**
 * Augment Window typings and add in properties provided by Gravity Forms, WordPress, etc.
 */
interface Window {
    jQuery?: JQueryStatic
	GP_QR_Code: any
	GPQR: {
		pluginUrl: string
		strings: {
			[key: string]: string
		}
	}
	gform: {
		addFilter: Function
		addAction: Function
		applyFilters: Function
		doAction: Function
	}
}
