makeLayoutPositions.d.ts 356 B

1234567
  1. import { ContainerLayout, Dimensions, Options } from '../types/interfaces';
  2. declare const _default: (containerWidth: number, itemsDimensions: Dimensions[], { gutterPixels, layout }: Options) => ContainerLayout;
  3. /**
  4. * Creates the specifications of the dimensions of the
  5. * container and items for the next render of Filterizr.
  6. */
  7. export default _default;