You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
185 B

  1. // @flow
  2. import type { SideObject } from '../types';
  3. export default function getFreshSideObject(): SideObject {
  4. return {
  5. top: 0,
  6. right: 0,
  7. bottom: 0,
  8. left: 0,
  9. };
  10. }