Skip to content
Snippets Groups Projects
Commit 32d84004 authored by Miłosz Grocholewski's avatar Miłosz Grocholewski
Browse files

Resolve "glyph type"

parent cbc6edbe
No related branches found
No related tags found
1 merge request!257Resolve "glyph type"
......@@ -2,11 +2,12 @@ import { z } from 'zod';
import { colorSchema } from '@/models/colorSchema';
import { referenceSchema } from '@/models/referenceSchema';
import { submodelSchema } from '@/models/submodelSchema';
import { glyphSchema } from '@/models/glyphSchema';
export const modelElementSchema = z.object({
id: z.number(),
model: z.number().nullable(),
glyph: z.number().nullable(),
glyph: glyphSchema.nullable(),
submodel: submodelSchema.nullable(),
x: z.number(),
y: z.number(),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment