import { StatusModal } from '../modules/modal'; declare global { interface JQueryStatic { /** * A wrapper around the global modal interface that automatically handles * passing an error or some type directly in as the body and renders that * error in a human-readable form */ statusModal(): typeof StatusModal; } } export {};