Skip to content

API

producePreset

Given a Preset and options, this runs the preset and produces a Creation.

import { producePreset } from "create";
import { z } from "zod";
declare const preset: Preset<{ name: z.ZodString }>;
await producePreset({
options: {
name: "My Production",
},
preset,
});