Files
dd0c-site/node_modules/astro/dist/env/config.js

22 lines
310 B
JavaScript
Raw Normal View History

2026-03-22 20:00:13 +00:00
const envField = {
string: (options) => ({
...options,
type: "string"
}),
number: (options) => ({
...options,
type: "number"
}),
boolean: (options) => ({
...options,
type: "boolean"
}),
enum: (options) => ({
...options,
type: "enum"
})
};
export {
envField
};