Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
submapConnection.ts 204 B
import { z } from 'zod';
import { targetElementSchema } from './targetElementSchema';

export const submapConnection = z.object({
  from: targetElementSchema,
  to: z.object({ modelId: z.number() }),
});