@isotope/prototope
Version:
Isotope-based JavaScript library for speedy UI prototyping
11 lines (10 loc) • 298 B
TypeScript
import { Util } from "../../declarations";
declare type GridTemplateRows = 1 | 2 | 3 | 4 | 5 | 6 | "none";
/**
* Prototope grid-template-rows util.
*
* @param value - Config value.
* @returns - Prototope util.
*/
declare const gridRows: (value: GridTemplateRows) => Util;
export { gridRows };