class-validator
Version:
Decorator-based property validation for classes.
13 lines (12 loc) • 468 B
TypeScript
import { ValidationOptions } from '../ValidationOptions';
export declare const IS_BASE58 = "isBase58";
/**
* Checks if a string is base58 encoded.
* If given value is not a string, then it returns false.
*/
export declare function isBase58(value: unknown): boolean;
/**
* Checks if a string is base58 encoded.
* If given value is not a string, then it returns false.
*/
export declare function IsBase58(validationOptions?: ValidationOptions): PropertyDecorator;