From 866bef722314c3be08c0ac056d87c35a766534b4 Mon Sep 17 00:00:00 2001 From: RMidhunSuresh Date: Thu, 18 Nov 2021 12:43:48 +0530 Subject: [PATCH] begin creating type for CryptoExtras --- src/platform/types/Platform.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/platform/types/Platform.d.ts b/src/platform/types/Platform.d.ts index cdc0da84..47aa20bd 100644 --- a/src/platform/types/Platform.d.ts +++ b/src/platform/types/Platform.d.ts @@ -25,3 +25,7 @@ export interface IPlatformConfig { wasmBundle: string; } } + +export interface CryptoExtras { + aesjs?: any; +}