---
title: "{{name}}"
subtitle: "Constant in {{module}}"
excerpt: "{{safe_yaml summary}}"
layout: manual
---
{{#if deprecated}}
**WARNING:** This constant is deprecated.
{{/if}}
{{#if experimental}}
**WARNING:** This constant is experimental and may change or be removed.
{{/if}}
{{{summary}}}
```kcl
{{{name}}}{{#if type_}}: {{{type_}}}{{/if}}{{#if value}} = {{{value}}}{{/if}}
```
{{{description}}}
{{#if type_}}
### Type
`{{type_}}`{{#if type_desc}} - {{{firstLine type_desc}}}{{/if}}
{{/if}}
{{#if examples}}
### Examples
{{#each examples}}
```kcl
{{{this.content}}}
```

{{/each}}
{{/if}}