From 3424e65e3e91ff552bd6c905e6a983ce75c60490 Mon Sep 17 00:00:00 2001 From: Bora Ciner Date: Mon, 14 Aug 2023 09:23:29 +0300 Subject: [PATCH] Exporting Param types to allow import --- src/params/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/params/index.ts b/src/params/index.ts index 550ab9db9..859f92a7e 100644 --- a/src/params/index.ts +++ b/src/params/index.ts @@ -38,7 +38,7 @@ import { InternalExpression, } from "./types"; -export { ParamOptions, Expression }; +export { ParamOptions, Expression, BooleanParam, FloatParam, IntParam, SecretParam, StringParam, ListParam }; type SecretOrExpr = Param | SecretParam; export const declaredParams: SecretOrExpr[] = [];