chore: data persistence var

This commit is contained in:
karishmas6
2024-06-07 23:44:04 +05:30
parent 2230eb323d
commit 35e1250d3b

View File

@@ -77,5 +77,16 @@ export class WorkflowGenerator {
params: [],
}
/**
* The persistent data from the whole workflow generation process.
* Used for correct generation of other user inputs.
* @private
*/
private generatedData: PersistedGeneratedData = {
lastUsedSelector: '',
lastIndex: null,
lastAction: '',
}
}