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