fulltext search doc update.

This commit is contained in:
Kyaw Tun
2016-04-06 20:56:36 +09:00
committed by Masahiro Wakame
parent 3faa118b04
commit 1b16a4f065
+2 -2
View File
@@ -35,7 +35,7 @@ interface StoreSchemaJson {
interface DatabaseSchemaJson {
version?: number;
stores: StoreSchemaJson[];
fullTextCatalogs?: FullTextCatalog;
fullTextCatalogs?: FullTextCatalog[];
}
interface StorageOptions {
@@ -237,7 +237,7 @@ declare namespace ydn.db {
run(callback: (iStorage: ydn.db.Storage) => void, store_names: string[], mode: TransactionMode): Request;
search(catalog_name: string): Request;
search(catalog_name: string, query: string, limit?: number, threshold?: number): Request;
setName(name: string): any;