4
4
*
5
5
* THIS CODE IS AUTOMATICALLY GENERATED.
6
6
*
7
- * Generated by convex@0.1.9 .
7
+ * Generated by convex@0.2.0 .
8
8
* To regenerate, run `npx convex codegen`.
9
9
* @module
10
10
*/
11
11
12
- import type getCounter from "../getCounter" ;
13
- import type incrementCounter from "../incrementCounter" ;
14
- import type { OptimisticLocalStore as GenericOptimisticLocalStore } from "convex/browser" ;
15
- import type { ClientMutation , ClientQuery } from "convex/server" ;
12
+ import type {
13
+ ApiFromModules ,
14
+ OptimisticLocalStore as GenericOptimisticLocalStore ,
15
+ } from "convex/browser" ;
16
+ import type {
17
+ UseQueryForAPI ,
18
+ UseMutationForAPI ,
19
+ UseConvexForAPI ,
20
+ } from "convex/react" ;
21
+ import type * as getCounter from "../getCounter" ;
22
+ import type * as incrementCounter from "../incrementCounter" ;
16
23
17
24
/**
18
25
* A type describing your app's public Convex API.
@@ -23,16 +30,10 @@ import type { ClientMutation, ClientQuery } from "convex/server";
23
30
* This type should be used with type-parameterized classes like
24
31
* `ConvexReactClient` to create app-specific types.
25
32
*/
26
- export type ConvexAPI = {
27
- queries : {
28
- getCounter : ClientQuery < typeof getCounter > ;
29
- } ;
30
- mutations : {
31
- incrementCounter : ClientMutation < typeof incrementCounter > ;
32
- } ;
33
- } ;
34
-
35
- import { makeUseQuery , makeUseMutation , makeUseConvex } from "convex/react" ;
33
+ export type ConvexAPI = ApiFromModules < {
34
+ getCounter : typeof getCounter ;
35
+ incrementCounter : typeof incrementCounter ;
36
+ } > ;
36
37
37
38
/**
38
39
* Load a reactive query within a React component.
@@ -46,7 +47,7 @@ import { makeUseQuery, makeUseMutation, makeUseConvex } from "convex/react";
46
47
* @param args - The arguments to the query function.
47
48
* @returns `undefined` if loading and the query's return value otherwise.
48
49
*/
49
- export const useQuery = makeUseQuery < ConvexAPI > ( ) ;
50
+ export declare const useQuery : UseQueryForAPI < ConvexAPI > ;
50
51
51
52
/**
52
53
* Construct a new {@link ReactMutation}.
@@ -64,7 +65,7 @@ export const useQuery = makeUseQuery<ConvexAPI>();
64
65
* @param name - The name of the mutation.
65
66
* @returns The {@link ReactMutation} object with that name.
66
67
*/
67
- export const useMutation = makeUseMutation < ConvexAPI > ( ) ;
68
+ export declare const useMutation : UseMutationForAPI < ConvexAPI > ;
68
69
69
70
/**
70
71
* Get the {@link ConvexReactClient} within a React component.
@@ -73,7 +74,7 @@ export const useMutation = makeUseMutation<ConvexAPI>();
73
74
*
74
75
* @returns The active {@link ConvexReactClient} object, or `undefined`.
75
76
*/
76
- export const useConvex = makeUseConvex < ConvexAPI > ( ) ;
77
+ export declare const useConvex : UseConvexForAPI < ConvexAPI > ;
77
78
78
79
/**
79
80
* A view of the query results currently in the Convex client for use within
0 commit comments