alinea
Version:
[](https://npmjs.org/package/alinea) [](https://packagephobia.com/result?p=alinea)
17 lines (15 loc) • 373 B
JavaScript
import "../../chunks/chunk-U5RRZUYZ.js";
// src/core/field/ScalarField.ts
import { Field } from "../Field.js";
import { ScalarShape } from "../shape/ScalarShape.js";
var ScalarField = class extends Field {
constructor(meta) {
super({
shape: new ScalarShape(meta.options.label, meta.options.initialValue),
...meta
});
}
};
export {
ScalarField
};