36 lines
479 B
Markdown
36 lines
479 B
Markdown
|
---
|
||
|
title: test.int
|
||
|
description: test_int attributes, type and example
|
||
|
---
|
||
|
## Constructor: test.int
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required |
|
||
|
|----------|:-------------:|---------:|
|
||
|
|value|[int](../types/int.md) | Yes|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [test\_Int](../types/test_Int.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```
|
||
|
$test_int = ['_' => 'test.int', 'value' => int, ];
|
||
|
```
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
|
||
|
```
|
||
|
test_int={_='test.int', value=int, }
|
||
|
|
||
|
```
|
||
|
|
||
|
|