Progressing on CanvasEditor

This commit is contained in:
2025-01-07 17:49:53 +01:00
parent 6f305397a8
commit e7412f6768
15 changed files with 395 additions and 139 deletions

View File

@@ -17,7 +17,6 @@ export const item: z.ZodType<ProjectItem> = baseItem.extend({
});
export const project = z.array(item);
type Project = z.infer<typeof project>;
type ProjectItem = z.infer<typeof baseItem> & {
export type ProjectItem = z.infer<typeof baseItem> & {
children?: ProjectItem[]
};