UNPKG

@appsemble/lang-sdk

Version:

Language SDK for Appsemble

16 lines 609 B
import { BaseActionDefinition } from './BaseActionDefinition.js'; import { extendJSONSchema } from '../utils/extendJSONSchema.js'; export const FlowBackActionDefinition = extendJSONSchema(BaseActionDefinition, { type: 'object', additionalProperties: false, required: ['type'], properties: { type: { enum: ['flow.back'], description: `On [flow pages](#flow-page-definition-sub-pages), return to the previous page if it is present. If this is called on the first page, nothing happens. `, }, }, }); //# sourceMappingURL=FlowBackActionDefinition.js.map