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}}"