@types/omgopass
Advanced tools
Comparing version
@@ -11,3 +11,3 @@ // Type definitions for omgopass 3.2 | ||
*/ | ||
syllablesCount?: number; | ||
syllablesCount?: number | undefined; | ||
/** | ||
@@ -17,3 +17,3 @@ * Minimal length of a syllable | ||
*/ | ||
minSyllableLength?: number; | ||
minSyllableLength?: number | undefined; | ||
/** | ||
@@ -23,3 +23,3 @@ * Max length of a syllable | ||
*/ | ||
maxSyllableLength?: number; | ||
maxSyllableLength?: number | undefined; | ||
/** | ||
@@ -29,3 +29,3 @@ * Put numbers in the password | ||
*/ | ||
hasNumbers?: boolean; | ||
hasNumbers?: boolean | undefined; | ||
/** | ||
@@ -35,3 +35,3 @@ * Use titlecase | ||
*/ | ||
titlecased?: boolean; | ||
titlecased?: boolean | undefined; | ||
/** | ||
@@ -41,3 +41,3 @@ * Vowel alphabet | ||
*/ | ||
vowels?: string; | ||
vowels?: string | undefined; | ||
/** | ||
@@ -47,3 +47,3 @@ * Consonant alphabet | ||
*/ | ||
consonants?: string; | ||
consonants?: string | undefined; | ||
/** | ||
@@ -53,3 +53,3 @@ * Symbols that separate syllables | ||
*/ | ||
separators?: string; | ||
separators?: string | undefined; | ||
} | ||
@@ -56,0 +56,0 @@ |
{ | ||
"name": "@types/omgopass", | ||
"version": "3.2.0", | ||
"version": "3.2.1", | ||
"description": "TypeScript definitions for omgopass", | ||
@@ -23,4 +23,4 @@ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/omgopass", | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "f2f45d44c53829d8455075ca8887c83b0c1d6e7a4e04a0c1b35baf8c823ab9bd", | ||
"typesPublisherContentHash": "ca85630ea8b868533c4bb78db9761ee9c963aa30d005740650ac24af1b94556f", | ||
"typeScriptVersion": "3.6" | ||
} |
@@ -21,3 +21,3 @@ # Installation | ||
*/ | ||
syllablesCount?: number; | ||
syllablesCount?: number | undefined; | ||
/** | ||
@@ -27,3 +27,3 @@ * Minimal length of a syllable | ||
*/ | ||
minSyllableLength?: number; | ||
minSyllableLength?: number | undefined; | ||
/** | ||
@@ -33,3 +33,3 @@ * Max length of a syllable | ||
*/ | ||
maxSyllableLength?: number; | ||
maxSyllableLength?: number | undefined; | ||
/** | ||
@@ -39,3 +39,3 @@ * Put numbers in the password | ||
*/ | ||
hasNumbers?: boolean; | ||
hasNumbers?: boolean | undefined; | ||
/** | ||
@@ -45,3 +45,3 @@ * Use titlecase | ||
*/ | ||
titlecased?: boolean; | ||
titlecased?: boolean | undefined; | ||
/** | ||
@@ -51,3 +51,3 @@ * Vowel alphabet | ||
*/ | ||
vowels?: string; | ||
vowels?: string | undefined; | ||
/** | ||
@@ -57,3 +57,3 @@ * Consonant alphabet | ||
*/ | ||
consonants?: string; | ||
consonants?: string | undefined; | ||
/** | ||
@@ -63,3 +63,3 @@ * Symbols that separate syllables | ||
*/ | ||
separators?: string; | ||
separators?: string | undefined; | ||
} | ||
@@ -74,3 +74,3 @@ | ||
### Additional Details | ||
* Last updated: Tue, 08 Jun 2021 20:01:25 GMT | ||
* Last updated: Thu, 08 Jul 2021 18:51:47 GMT | ||
* Dependencies: none | ||
@@ -77,0 +77,0 @@ * Global values: none |
4936
4.05%