1: <?php
2:
3: declare(strict_types=1);
4:
5: namespace Atk4\Ui\Js;
6:
7: /**
8: * Allow to map class into JavaScript expression.
9: */
10: interface JsExpressionable
11: {
12: public function jsRender(): string;
13: }
14: