11 lines
144 B
PHP
Raw Normal View History

2024-10-09 10:40:43 +08:00
<?php
namespace PhpOffice\Math\Writer;
use PhpOffice\Math\Math;
interface WriterInterface
{
public function write(Math $math): string;
}