mirror of
https://github.com/openvk/openvk
synced 2025-04-21 07:33:05 +03:00
10 lines
139 B
PHP
10 lines
139 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace openvk\Web\Events;
|
|
|
|
interface ILPEmitable
|
|
{
|
|
public function getLongPoolSummary(): object;
|
|
}
|