popup-centered
Version:
The little function for open window popup on center display
6 lines (5 loc) • 317 B
TypeScript
import { WindowFeaturesOptions } from './utils';
declare function popupCentered(url: string, title: string, width: number, height: number): Window;
declare function popupCentered(url: string, title: string, options: WindowFeaturesOptions): Window;
export default popupCentered;
export { WindowFeaturesOptions };