vue3-social-sharing
Version:
Vue 3 social sharing plugin
10 lines (9 loc) • 401 B
TypeScript
declare const getPopupWindowPosition: (popupWidth: number, popupHeight: number) => {
top: number;
left: number;
width: number;
height: number;
} | null;
declare const formatPopupWindowParams: (params: Record<string, string | number>) => string;
declare const getPopupWindow: (link: string) => Window | null;
export { getPopupWindow, getPopupWindowPosition, formatPopupWindowParams, };