37142-vm/staticfiles/@popperjs/core/lib/utils/getFreshSideObject.js.flow
2025-12-25 17:02:13 +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,
};
}