import { FunctionReference, anyApi } from "convex/server";
import { GenericId as Id } from "convex/values";
export const api: PublicApiType = anyApi as unknown as PublicApiType;
export const internal: InternalApiType = anyApi as unknown as InternalApiType;
export type PublicApiType = {
auth: {
signIn: FunctionReference<
"action",
"public",
{
params?: any;
provider?: string;
refreshToken?: string;
verifier?: string;
},
any
>;
signOut: FunctionReference<"action", "public", Record<string, never>, any>;
};
tasks: {
get: FunctionReference<"query", "public", Record<string, never>, any>;
};
};
export type InternalApiType = {};
import { FunctionReference, anyApi } from "convex/server";
import { GenericId as Id } from "convex/values";
export const api: PublicApiType = anyApi as unknown as PublicApiType;
export const internal: InternalApiType = anyApi as unknown as InternalApiType;
export type PublicApiType = {
auth: {
signIn: FunctionReference<
"action",
"public",
{
params?: any;
provider?: string;
refreshToken?: string;
verifier?: string;
},
any
>;
signOut: FunctionReference<"action", "public", Record<string, never>, any>;
};
tasks: {
get: FunctionReference<"query", "public", Record<string, never>, any>;
};
};
export type InternalApiType = {};