Skip to content
Snippets Groups Projects

Resolve "License information not displayed in the left panel (new interface)"

2 files
+ 11
0
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 7
0
import { z } from 'zod';
export const licenseSchema = z.object({
id: z.number().int().positive(),
name: z.string(),
content: z.string(),
});
Loading