Skip to content

Commit

Permalink
Fix empty object in component client types (#28526)
Browse files Browse the repository at this point in the history
GitOrigin-RevId: c491640a6fd5d0fccf26e2cddf4d9a0a57e59ec7
  • Loading branch information
sujayakar authored and Convex, Inc. committed Jul 31, 2024
1 parent 9753d9b commit 8675264
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,6 @@ export declare const app: {
fromQuery: FunctionReference<"query", "internal", any, any>;
};
};
errors: {};
envVars: {
messages: {
envVarAction: FunctionReference<"action", "internal", any, any>;
Expand All @@ -167,5 +166,4 @@ export declare const app: {
url: FunctionReference<"action", "internal", any, any>;
};
};
envVars: {};
};
Original file line number Diff line number Diff line change
Expand Up @@ -163,5 +163,4 @@ export declare const app: {
url: FunctionReference<"action", "internal", any, any>;
};
};
component: {};
};
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,6 @@ export async function componentServerDTS(
)) {
result.push(line);
}
result.push(`${childComponent.name}: {},`);
}

result.push("};");
Expand Down

0 comments on commit 8675264

Please sign in to comment.