From 714d03524c0a39dd17efed121c73614f60f40e5a Mon Sep 17 00:00:00 2001 From: Jaiwanth Date: Tue, 27 Jul 2021 17:18:17 +0530 Subject: [PATCH] Add declaration file --- src/@types/raw-loader.d.ts | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 src/@types/raw-loader.d.ts diff --git a/src/@types/raw-loader.d.ts b/src/@types/raw-loader.d.ts new file mode 100644 index 0000000000..ea3df880f6 --- /dev/null +++ b/src/@types/raw-loader.d.ts @@ -0,0 +1,4 @@ +declare module '!!raw-loader!*' { + const contents: string; + export default contents; +}