UNPKG

lean4-code-actions

Version:

Refactorings and snippets for Lean 4

10 lines (6 loc) 162 B
import { z } from 'zod' export const NameSchema = z.string().min(1) export type Name = z.infer<typeof NameSchema> export interface WithName { name: string }