From 10615ca1a187c1c1905ae0479bc793d4ac24dcd1 Mon Sep 17 00:00:00 2001 From: isaiM6 <98564922+isaiM6@users.noreply.github.com> Date: Wed, 3 Aug 2022 16:49:31 -0700 Subject: [PATCH] merge commit --- packages/hoppscotch-data/src/environment.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/hoppscotch-data/src/environment.ts b/packages/hoppscotch-data/src/environment.ts index 157c59525..15804de3b 100644 --- a/packages/hoppscotch-data/src/environment.ts +++ b/packages/hoppscotch-data/src/environment.ts @@ -9,6 +9,11 @@ export type Environment = { }[] } +export type Variables = { + key: string + value: string +}[] + const REGEX_ENV_VAR = /<<([^>]*)>>/g // "<>" const REGEX_MY_VAR = /{{([^}]*)}}/g // "{{myVariable}}"