Skip to content

Commit 2cc08a2

Browse files
committed
chore: update deps
1 parent 76a9655 commit 2cc08a2

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

tests/__snapshots__/tsnapi/@devframes/plugin-data-inspector/engine.snapshot.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,12 +148,12 @@ export declare function normalize(_: unknown, _?: NormalizeOptions): {
148148
data: unknown;
149149
stats: NormalizeStats;
150150
};
151-
export declare function runQuery(_: unknown, _: string, _?: NormalizeOptions): QueryOutcome;
152-
export declare function runQueryAtPath(_: unknown, _: string, _: NodePath, _?: NormalizeOptions): QueryOutcome;
151+
export declare function runQuery(_: unknown, _: string, _?: NormalizeOptions): Promise<QueryOutcome>;
152+
export declare function runQueryAtPath(_: unknown, _: string, _: NodePath, _?: NormalizeOptions): Promise<QueryOutcome>;
153153
export declare function skeletonOf(_: unknown, _?: SkeletonOptions): {
154154
skeleton: unknown;
155155
nodes: number;
156156
ms: number;
157157
};
158-
export declare function suggest(_: unknown, _: string, _: number, _?: number): SuggestOutcome;
158+
export declare function suggest(_: unknown, _: string, _: number, _?: number): Promise<SuggestOutcome>;
159159
// #endregion

tests/__snapshots__/tsnapi/@devframes/plugin-data-inspector/engine.snapshot.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ export function applyWrite(_, _, _) {}
66
export function isExcludedKey(_, _) {}
77
export function navigate(_, _, _) {}
88
export function normalize(_, _) {}
9-
export function runQuery(_, _, _) {}
10-
export function runQueryAtPath(_, _, _, _) {}
9+
export async function runQuery(_, _, _) {}
10+
export async function runQueryAtPath(_, _, _, _) {}
1111
export function skeletonOf(_, _) {}
12-
export function suggest(_, _, _, _) {}
12+
export async function suggest(_, _, _, _) {}
1313
// #endregion

0 commit comments

Comments
 (0)