enable noImplicitAny (#209)

This commit is contained in:
Jess Porter
2022-02-02 12:43:05 +00:00
committed by GitHub
parent fcf53d15b8
commit f70d97e4d9
17 changed files with 78 additions and 64 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ limitations under the License.
export const ERROR_KIND_PERMISSION = "permission";
export const ERROR_KIND_FATAL = "fatal";
const TRIGGER_INTERVALS = {
const TRIGGER_INTERVALS: { [key: string]: number } = {
[ERROR_KIND_PERMISSION]: 3 * 60 * 60 * 1000, // 3 hours
[ERROR_KIND_FATAL]: 15 * 60 * 1000, // 15 minutes
};