Add support for options flows (#3491)

This commit is contained in:
Paulus Schoutsen
2019-08-15 13:34:26 -07:00
committed by GitHub
parent 200e099035
commit f458bdffe0
6 changed files with 145 additions and 9 deletions

View File

@@ -71,8 +71,9 @@ export interface FlowConfig {
}
export interface DataEntryFlowDialogParams {
startFlowHandler?: string;
continueFlowId?: string;
dialogClosedCallback: (params: { flowFinished: boolean }) => void;
dialogClosedCallback?: (params: { flowFinished: boolean }) => void;
flowConfig: FlowConfig;
}