pip-services3-commons-node
Version:
Portable abstractions and patterns for Pip.Services in Node.js
20 lines (16 loc) • 386 B
text/typescript
/** @module validate */
import { TypeCode } from '../convert/TypeCode';
import { MapSchema } from './MapSchema';
/**
* Schema to validate [[FilterParams]].
*
* @see [[FilterParams]]
*/
export class FilterParamsSchema extends MapSchema {
/**
* Creates a new instance of validation schema.
*/
public constructor() {
super(TypeCode.String, null);
}
}