38259-vm/staticfiles/@popperjs/core/lib/utils/getFreshSideObject.js.flow
2026-02-07 03:09:03 +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,
};
}