class-validator
Version:
Decorator-based property validation for classes.
15 lines (14 loc) • 904 B
TypeScript
import { ValidationOptions } from '../ValidationOptions';
export declare const IS_HSL = "isHSL";
/**
* Check if the string is an HSL (hue, saturation, lightness, optional alpha) color based on CSS Colors Level 4 specification.
* Comma-separated format supported. Space-separated format supported with the exception of a few edge cases (ex: hsl(200grad+.1%62%/1)).
* If given value is not a string, then it returns false.
*/
export declare function isHSL(value: unknown): boolean;
/**
* Check if the string is an HSL (hue, saturation, lightness, optional alpha) color based on CSS Colors Level 4 specification.
* Comma-separated format supported. Space-separated format supported with the exception of a few edge cases (ex: hsl(200grad+.1%62%/1)).
* If given value is not a string, then it returns false.
*/
export declare function IsHSL(validationOptions?: ValidationOptions): PropertyDecorator;