[Home](../../readme.md) | [Installation](../installation.md) | [Usage](../usage.md) | [Types](../types/) | [Values](../values/) | **Syntax** | [TypeRegistry](../type-registry.md) | [TypeCheck](../type-check.md) # Options Options can be passed via the last parameter. ```typescript const T = Syntax(`number`, { minimum: 42 }); // const T = { // type: 'number', // minimum: 42 // } ``` Back to [Home](../../readme.md)