Templating syntax optimized for Hapify models handling.
This package parses templates written with the Hapify Syntax.
``typescript
import { HapifySyntax } from '@hapify/syntax';
const template = "Model is <
const model: { [key: string]: any; } = { / Explicit model from generator / };
HapifySyntax.run(template, model, { timeout: 2000 }); // Outputs 'Model is userProfile'.
``
For more information about this module, please refer to the online documentation.