From 9fb6e02c731238ca408a16520513342cd6af68be Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Wed, 10 Jul 2024 17:41:54 +0100 Subject: [PATCH] Remove glob workaround (#1760) --- src/@types/glob.d.ts | 6 ------ 1 file changed, 6 deletions(-) delete mode 100644 src/@types/glob.d.ts diff --git a/src/@types/glob.d.ts b/src/@types/glob.d.ts deleted file mode 100644 index 2bfa5a5..0000000 --- a/src/@types/glob.d.ts +++ /dev/null @@ -1,6 +0,0 @@ -import { GlobOptions } from "glob"; - -declare module "glob" { - // Workaround for @electron/asar importing IOptions instead of GlobOptions - export type IOptions = GlobOptions; -}