Skip to content

Commit

Permalink
Update packages/timeline-state-resolver-types/src/index.ts
Browse files Browse the repository at this point in the history
Co-authored-by: Johan Nyman <[email protected]>
  • Loading branch information
Julusian and nytamin authored Aug 19, 2024
1 parent 9406a73 commit 34dcf3a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/timeline-state-resolver-types/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 34dcf3a

Please sign in to comment.