roamjs-components 0.73.2 → 0.73.3
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/package.json +1 -1
- package/types/query-builder.d.ts +1 -1
package/package.json
CHANGED
package/types/query-builder.d.ts
CHANGED
|
@@ -118,7 +118,7 @@ export declare type Result = {
|
|
|
118
118
|
text: string;
|
|
119
119
|
uid: string;
|
|
120
120
|
} & Record<`${string}-uid`, string> & Record<string, string | number | Date>;
|
|
121
|
-
export declare type RunQuery = (parentUid: string) => Promise<Result
|
|
121
|
+
export declare type RunQuery = (parentUid: string) => Promise<Result[]>;
|
|
122
122
|
export declare type ListActiveQueries = () => {
|
|
123
123
|
uid: string;
|
|
124
124
|
}[];
|