2024-10-09 10:40:43 +08:00

11 lines
144 B
PHP

<?php
namespace PhpOffice\Math\Writer;
use PhpOffice\Math\Math;
interface WriterInterface
{
public function write(Math $math): string;
}