@kodepandai/node-input-validator
Version:
validation library for nodejs, inspired by laravel.
12 lines (11 loc) • 334 B
TypeScript
import { MessageProviderFuncation } from '../contracts';
interface MessageParserParams {
message: string | MessageProviderFuncation;
attrName: string;
niceName?: string;
ruleArgs?: any;
ruleName: string;
attrValue?: any;
}
export declare function messageParser(params: MessageParserParams): string;
export {};