improved search module

This commit is contained in:
huangjx
2022-02-26 21:47:18 +08:00
parent ea07560b5e
commit 0d689ca2dd
6 changed files with 66 additions and 25 deletions

View File

@@ -0,0 +1,10 @@
<?php
namespace OCA\NCDownloader\Search\Sites;
interface searchInterface
{
public function search(string $keyword):array;
public function getRows():array;
public function getTableTitles():array;
}