Files
homewebsite/node_modules/astro/dist/env/config.js
2025-10-17 20:17:33 +00:00

22 lines
310 B
JavaScript

const envField = {
string: (options) => ({
...options,
type: "string"
}),
number: (options) => ({
...options,
type: "number"
}),
boolean: (options) => ({
...options,
type: "boolean"
}),
enum: (options) => ({
...options,
type: "enum"
})
};
export {
envField
};