aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/WebAssembly/Structure/Types/GlobalType.php
blob: 3e8ab6c2ec085c2db615b397415ed5060f15fd7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

declare(strict_types=1);

namespace Nsfisis\Waddiwasi\WebAssembly\Structure\Types;

final readonly class GlobalType
{
    public function __construct(
        public Mut $mut,
        public ValType $valType,
    ) {
    }
}