UNPKG

pulsar_sdk_js

Version:

A convenient way for you to interact with Pulsar's Third Party APIs, using typified classes.

7 lines (6 loc) 480 B
import { ValidationOptions, ValidationArguments, ValidatorConstraintInterface } from 'class-validator'; export declare class IsRecordArrayValueConstraint implements ValidatorConstraintInterface { validate(value: any, args: ValidationArguments): Promise<boolean>; defaultMessage(args: ValidationArguments): any; } export declare function IsRecordArrayValue(relatedType: new () => any, validationOptions?: ValidationOptions): (object: Object, propertyName: string) => void;