mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-09-25 21:00:28 -05:00
8 lines
290 B
TypeScript
8 lines
290 B
TypeScript
import * as v from "valibot";
|
|
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(v.nullable(v.string()), { loader: false }),
|
|
});
|