@imbricate/core 3.3.0 → 3.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/origin/interface.d.ts +2 -2
- package/package.json +1 -1
package/origin/interface.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ import { IImbricateDatabaseManager } from "../database/manager";
|
|
|
7
7
|
import { IImbricateStaticManager } from "../static/manager";
|
|
8
8
|
import { IImbricateTextManager } from "../text/manager";
|
|
9
9
|
import { OriginPayload } from "./definition";
|
|
10
|
-
import {
|
|
10
|
+
import { ImbricateSearchResult } from "./search";
|
|
11
11
|
export interface IImbricateOrigin {
|
|
12
12
|
/**
|
|
13
13
|
* Unique identifier of the origin
|
|
@@ -53,5 +53,5 @@ export interface IImbricateOrigin {
|
|
|
53
53
|
* @param keyword the keyword to search
|
|
54
54
|
* @returns the search
|
|
55
55
|
*/
|
|
56
|
-
search(keyword: string): PromiseLike<
|
|
56
|
+
search(keyword: string): PromiseLike<ImbricateSearchResult>;
|
|
57
57
|
}
|