blob: 9c2d965383b5d946b7486f9045efef2a79cbd809 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
declare(strict_types=1);
namespace Nsfisis\Waddiwasi\WebAssembly\Execution;
interface ExporterInterface
{
/**
* @return list<ExportInst>
*/
public function exports(): array;
}
|