@isotope/prototope
Version:
Isotope-based JavaScript library for speedy UI prototyping
11 lines (10 loc) • 337 B
TypeScript
import { Util } from "../../declarations";
declare type Height = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 8 | 10 | 12 | 16 | 20 | 24 | 32 | 40 | 48 | 56 | 64 | "px" | "auto" | "full" | "screen";
/**
* Prototope height util.
*
* @param value - Config value.
* @returns - Prototope util.
*/
declare const h: (value: Height) => Util;
export { h };