UNPKG

pigmentjs

Version:

A zero-dependency colour organisation, creation and manipulation library built for web developers.

6 lines (5 loc) 247 B
import { ValidatedHex } from "./types"; declare const isValidHex: (hex: string) => boolean; declare const validateHex: (hex: string) => ValidatedHex; declare const formatHex: (hex: string) => string; export { isValidHex, validateHex, formatHex };