sprof 0.0.217 → 0.0.219
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/dist/core/store/SearchStore.d.ts +1 -1
- package/dist/core/store/index.d.ts +1 -1
- package/dist/sprof.js +443 -442
- package/dist/sprof.umd.cjs +9 -9
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -126,7 +126,7 @@ declare class S {
|
|
|
126
126
|
count: number;
|
|
127
127
|
Search(searchModel: SearchModel): Promise<void>;
|
|
128
128
|
mainSearch(searchModel: SearchModel): Promise<void>;
|
|
129
|
-
Full(searchModel: SearchModel): Promise<
|
|
129
|
+
Full(searchModel: SearchModel): Promise<SearchModel>;
|
|
130
130
|
ToggleDrawer(isOpen: boolean): void;
|
|
131
131
|
SetSearchModel(searchModel: void | SearchModel): void;
|
|
132
132
|
SetSearchGroups(): void;
|
|
@@ -397,7 +397,7 @@ export default abstract class S {
|
|
|
397
397
|
count: number;
|
|
398
398
|
Search(searchModel: import('../classes/SearchModel').default): Promise<void>;
|
|
399
399
|
mainSearch(searchModel: import('../classes/SearchModel').default): Promise<void>;
|
|
400
|
-
Full(searchModel: import('../classes/SearchModel').default): Promise<
|
|
400
|
+
Full(searchModel: import('../classes/SearchModel').default): Promise<import('../classes/SearchModel').default>;
|
|
401
401
|
ToggleDrawer(isOpen: boolean): void;
|
|
402
402
|
SetSearchModel(searchModel: void | import('../classes/SearchModel').default): void;
|
|
403
403
|
SetSearchGroups(): void;
|