UNPKG

@croct/rule-engine-url-variables

Version:

A rule engine extension for passing variables through the URL.

9 lines (8 loc) 323 B
import { NumberType, ObjectType, StringType } from '@croct/plug/sdk/validation'; export var optionsSchema = new ObjectType({ properties: { persistence: new StringType({ enumeration: ['page', 'browser', 'tab'] }), priority: new NumberType({ integer: true }), prefix: new StringType(), }, });