From 34dcf3ac435f03dc4bdad3814203818b97c7f481 Mon Sep 17 00:00:00 2001 From: Julian Waller Date: Mon, 19 Aug 2024 12:09:01 +0100 Subject: [PATCH] Update packages/timeline-state-resolver-types/src/index.ts Co-authored-by: Johan Nyman --- packages/timeline-state-resolver-types/src/index.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/timeline-state-resolver-types/src/index.ts b/packages/timeline-state-resolver-types/src/index.ts index 0981e0781..3b615c59b 100644 --- a/packages/timeline-state-resolver-types/src/index.ts +++ b/packages/timeline-state-resolver-types/src/index.ts @@ -173,8 +173,11 @@ export enum ActionExecutionResultCode { Ok = 'OK', } -export interface StringInterpolation { +/** This resolves to a string, where parts can be defined by the datastore */ +export interface TemplateString{ + /** The string template. Example: "http://google.com?q={{searchString}}" */ key: string + /** Values for the arguments in the key string. Example: { searchString: "TSR" } */ args?: { [k: string]: any }