@yantrix/automata v0.0.2 • Docs
Yantrix API / @yantrix/automata / TValidator
Type Alias: TValidator()<T>
ts
type TValidator<T>: (x) => x is TDefinedValues<T>;
Represents a validator function of the automata. Used as a template for validating the automata state, action, event, or event metadata.
Type Parameters
• T
The type of the validator.
Parameters
• x: any
The value to validate.
Returns
x is TDefinedValues<T>
Example
typescript
// Create an action validator for the automata:
const testValidator = ((a: number) => a % 15 === 0) as TValidator<TTestAction>;
sampleAutomataInstance.setActionValidator(testValidator);