本文整理汇总了TypeScript中joi-browser.string函数的典型用法代码示例。如果您正苦于以下问题:TypeScript string函数的具体用法?TypeScript string怎么用?TypeScript string使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了string函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: test
test('Form => validateFormField() returns true when the field we want to validate is valid', () => {
form = new Form([
{ fieldName: 'jobTitle', validator: Joi.string().min(2).max(60).required(), type: ValidatorType.JOI },
{ fieldName: 'isPayingJob', validator: Joi.bool().required(), type: ValidatorType.JOI }
])
expect(form.validateFormField('jobTitle', 'Valid Job Title')).toBe(true);
})
示例2:
import * as Joi from "joi-browser";
import { is } from "../../util";
interface BotResponse {
id: string;
error?: void;
result: {
[key: string]: any;
method: string;
};
};
let goodResponseValidator = Joi.object().keys({
id: Joi.string(),
result: Joi.object(),
error: Joi.any().allow(null, false)
});
// Type guard function to do type checking at runtime.
let isBotResponse = is<BotResponse>(goodResponseValidator);
export interface RPCError {
error: string;
method: string;
}
export interface BotErrorResponse {
id: string;
result?: void;
error: RPCError;
};