diff options
Diffstat (limited to 'src/globals.d.ts')
-rw-r--r-- | src/globals.d.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/globals.d.ts b/src/globals.d.ts index 069cbcb..2e8d444 100644 --- a/src/globals.d.ts +++ b/src/globals.d.ts @@ -16,6 +16,7 @@ * along with this program. If not, see <https://www.gnu.org/licenses/>. */ +import { LoDashStatic } from "lodash"; declare global { /** @@ -54,6 +55,7 @@ declare global { push(chunk: any): any; pop(): any; }; + _: LoDashStatic; [k: string]: any; } } |