@nichoth/replicache-supabase
Version:
Use replicache with supabase
16 lines • 563 B
TypeScript
import { z } from 'zod';
export declare const authError: Error;
export declare const PullRequestSchema: z.ZodObject<{
clientGroupID: z.ZodString;
cookie: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
}, "strip", z.ZodTypeAny, {
clientGroupID: string;
cookie: number | null;
}, {
clientGroupID: string;
cookie: number | null;
}>;
type PullRequest = z.infer<typeof PullRequestSchema>;
export declare function processPull(req: PullRequest, userID: string): Promise<import("replicache").PullResponseOKV1>;
export {};
//# sourceMappingURL=pull.d.ts.map