UNPKG

@brizy/ui

Version:
8 lines (7 loc) 215 B
import { NewType } from "./NewType"; declare enum hex { hex = "hex" } export type Hex = "#000000" | "#ffffff" | NewType<string, hex.hex>; export declare const isHex: (colorString: string) => boolean; export {};