UNPKG

@appsemble/utils

Version:

Utility functions used in Appsemble internally

14 lines 486 B
import { BaseActionDefinition } from './BaseActionDefinition.js'; import { extendJSONSchema } from './utils.js'; export const LinkNextActionDefinition = extendJSONSchema(BaseActionDefinition, { type: 'object', additionalProperties: false, required: ['type'], properties: { type: { enum: ['link.next'], description: 'Link to the next page in the browser history.', }, }, }); //# sourceMappingURL=LinkNextActionDefinition.js.map