feat: enhance tickets portal and admin flows
This commit is contained in:
parent
9cdd8763b4
commit
c15f0a5b09
67 changed files with 1101 additions and 338 deletions
14
types/convex-react.d.ts
vendored
Normal file
14
types/convex-react.d.ts
vendored
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
import "convex/react";
|
||||
|
||||
declare module "convex/react" {
|
||||
import type { FunctionReference } from "convex/server";
|
||||
|
||||
type OriginalUseQuery = typeof import("convex/react").useQuery;
|
||||
type OriginalArgs = Parameters<OriginalUseQuery>[1];
|
||||
type OriginalReturn = ReturnType<OriginalUseQuery>;
|
||||
|
||||
export function useQuery(
|
||||
query: FunctionReference<"query"> | "skip",
|
||||
args?: OriginalArgs
|
||||
): OriginalReturn;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue