Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 0s
8 lines
178 B
TypeScript
8 lines
178 B
TypeScript
import { z } from "zod";
|
|
import { editorContentSchema } from ".";
|
|
|
|
export const commentSchema = z.object({
|
|
content: editorContentSchema,
|
|
parentId: z.string().optional(),
|
|
});
|