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 0870dee commit 3e7e756Copy full SHA for 3e7e756
src/index.ts
@@ -1,4 +1,4 @@
1
-interface IIsPwnedConfig {
+interface IsPwnedConfig {
2
endpoint?: string;
3
timeout?: number;
4
userAgent?: string;
@@ -212,7 +212,7 @@ export default class IsPwned {
212
timeout: number;
213
resolveOnTimeout: boolean;
214
215
- constructor(config: IIsPwnedConfig = {}) {
+ constructor(config: IsPwnedConfig = {}) {
216
if (typeof window === 'undefined') {
217
throw new Error('IsPwned is meant for use in the browser only.');
218
}
0 commit comments