From d66bab366aa7badd804bc310033900239e7738ca Mon Sep 17 00:00:00 2001 From: Rohit Chouhan Date: Mon, 6 May 2024 10:53:13 -0700 Subject: [PATCH] Add set variable mode to typings (#292) --- plugin-api.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/plugin-api.d.ts b/plugin-api.d.ts index dd769fb..75ce068 100644 --- a/plugin-api.d.ts +++ b/plugin-api.d.ts @@ -1319,6 +1319,11 @@ declare type Action = readonly variableId: string | null readonly variableValue?: VariableData } + | { + readonly type: 'SET_VARIABLE_MODE' + readonly variableCollectionId: string | null + readonly variableModeId: string | null + } | { readonly type: 'CONDITIONAL' readonly conditionalBlocks: ConditionalBlock[]