merge commit

This commit is contained in:
isaiM6
2022-08-03 16:49:31 -07:00
parent c2002f0f27
commit 10615ca1a1

View File

@@ -9,6 +9,11 @@ export type Environment = {
}[]
}
export type Variables = {
key: string
value: string
}[]
const REGEX_ENV_VAR = /<<([^>]*)>>/g // "<<myVariable>>"
const REGEX_MY_VAR = /{{([^}]*)}}/g // "{{myVariable}}"