mirror of
https://github.com/kmc7468/arkvault.git
synced 2026-02-04 16:16:55 +00:00
4 lines
109 B
TypeScript
4 lines
109 B
TypeScript
import { z } from "zod";
|
|
|
|
export const directoryIdSchema = z.union([z.literal("root"), z.int().positive()]);
|