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

declare(strict_types=1);

namespace Nsfisis\Waddiwasi\WebAssembly\Structure\Types;

final readonly class MemType
{
    public function __construct(
        public Limits $limits,
    ) {
    }
}