Skip to content

Commit 1b6230f

Browse files
chore: eslint fix (#518)
1 parent 0c8346e commit 1b6230f

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/utils/autofetcher.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
export class AutoFetcher {
2+
static DEFAULT_TIMEOUT = 30000;
3+
static MIN_TIMEOUT = 30000;
4+
timeout: number;
5+
active: boolean;
6+
timer: undefined | ReturnType<typeof setTimeout>;
7+
launchCounter: number;
8+
29
constructor() {
310
this.timeout = AutoFetcher.DEFAULT_TIMEOUT;
411
this.active = true;
@@ -52,11 +59,4 @@ export class AutoFetcher {
5259
this.launchCounter++;
5360
this.active = true;
5461
}
55-
56-
static DEFAULT_TIMEOUT = 30000;
57-
static MIN_TIMEOUT = 30000;
58-
timeout: number;
59-
active: boolean;
60-
timer: undefined | ReturnType<typeof setTimeout>;
61-
launchCounter: number;
6262
}

0 commit comments

Comments
 (0)