mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-08-04 19:34:23 -05:00
8 lines
284 B
TypeScript
8 lines
284 B
TypeScript
import { z } from "zod";
|
|
import * as SearchParams from "~/modules/search-params/search-params";
|
|
import { SP } from "~/modules/search-params/search-params";
|
|
|
|
export const authErrorSearchParams = SearchParams.define({
|
|
authError: SP.param(z.string().nullable(), { loader: false }),
|
|
});
|