Files
2026-03-27 18:36:05 +00:00

10 lines
264 B
JavaScript

import { resizeElement } from './handle-element.mjs';
import { resizeWindow } from './handle-window.mjs';
function resize(a, b) {
return typeof a === "function" ? resizeWindow(a) : resizeElement(a, b);
}
export { resize };
//# sourceMappingURL=index.mjs.map