From 897b37fb671382e8f804d8f1f15e379964f48ad2 Mon Sep 17 00:00:00 2001 From: Dominik Korsa Date: Tue, 26 Jan 2021 21:26:12 +0100 Subject: [PATCH] fix(types): Rename exported variable (#1682) --- types/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/index.d.ts b/types/index.d.ts index 5620dbeab7..064f51df15 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -274,5 +274,5 @@ declare namespace cheerio { } } -declare const cheerioModule: cheerio.CheerioAPI; -export = cheerioModule; +declare const cheerio: cheerio.CheerioAPI; +export = cheerio;