UNPKG

@veecode-platform/safira-cli

Version:

Generate a microservice project from your spec.

9 lines (8 loc) 352 B
export declare class StringValidator { static notEmpty(input: string): boolean; static greaterThan(input: string, length: number): boolean; static lessThan(input: string, length: number): boolean; static isUrl(input: string): boolean; static hasBreakLine(input: string): boolean; static hasMultiLines(input: string): boolean; }