UNPKG

ts-string-generator

Version:

Created with Typescript for Node.js. This package works with both Typescript and Javascript.

13 lines (12 loc) 277 B
export interface Options { size?: number, upperCase?: boolean, lowerCase?: boolean, numbers?: boolean, specialChars?: boolean, excluded?: string | string[], strict?: boolean, } export interface ValidationOptions extends Partial<Options> { unsafeUrl?: boolean }