UNPKG

@junobuild/admin

Version:

A library for interfacing with admin features of Juno

14 lines (13 loc) 329 B
import * as z from 'zod'; /** * Represents the type of build, stock or extended. */ export declare const BuildTypeSchema: z.ZodEnum<{ stock: "stock"; extended: "extended"; }>; /** * Represents the type of build. * @typedef {'stock' | 'extended'} BuildType */ export type BuildType = z.infer<typeof BuildTypeSchema>;