We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f1ec4c commit 4bb1c0aCopy full SHA for 4bb1c0a
index.d.ts
@@ -84,7 +84,7 @@ declare const cryptoRandomString: {
84
//=> '2cf05d94db'
85
```
86
*/
87
- (options?: cryptoRandomString.Options): string;
+ (options: cryptoRandomString.Options): string;
88
89
/**
90
Asynchronously generate a [cryptographically strong](https://en.wikipedia.org/wiki/Strong_cryptography) random string.
@@ -99,7 +99,7 @@ declare const cryptoRandomString: {
99
100
101
102
- async(options?: cryptoRandomString.Options): Promise<string>;
+ async(options: cryptoRandomString.Options): Promise<string>;
103
}
104
105
export = cryptoRandomString;
0 commit comments