35304-vm/staticfiles/@popperjs/core/lib/utils/getFreshSideObject.js.flow
2025-10-28 17:02:33 +00:00

12 lines
185 B
Plaintext

// @flow
import type { SideObject } from '../types';
export default function getFreshSideObject(): SideObject {
return {
top: 0,
right: 0,
bottom: 0,
left: 0,
};
}