some changes for search

This commit is contained in:
huangjx
2022-04-26 18:13:18 +08:00
parent c42be35566
commit 3ac43ec88a
8 changed files with 70 additions and 26 deletions

View File

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