UNPKG

@appsemble/utils

Version:

Utility functions used in Appsemble internally

16 lines 594 B
import { BaseActionDefinition } from './BaseActionDefinition.js'; import { extendJSONSchema } from './utils.js'; export const FlowFinishActionDefinition = extendJSONSchema(BaseActionDefinition, { type: 'object', additionalProperties: false, required: ['type'], properties: { type: { enum: ['flow.finish'], description: `On [flow pages](../guides/page-types#flow-page), triggers the [\`onFlowFinish\`](#flow-page-actions-definition-on-flow-finish) action on the page. `, }, }, }); //# sourceMappingURL=FlowFinishActionDefinition.js.map