"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.CompileArgsSchema = void 0;
const zod_1 = require("zod");
exports.CompileArgsSchema = zod_1.z.object({
typespecPath: zod_1.z.string().endsWith(".tsp", { message: "File must be a .tsp file" }),
});