alinea
Version:
[](https://npmjs.org/package/alinea) [](https://packagephobia.com/result?p=alinea)
9 lines (8 loc) • 455 B
TypeScript
import { FieldOptions, WithoutLabel } from 'alinea/core/Field';
import { Hint } from 'alinea/core/Hint';
import { ScalarField } from 'alinea/core/field/ScalarField';
/** Internal representation of a text field */
export declare class HiddenField<T> extends ScalarField<T, FieldOptions<T>> {
}
/** Create a hidden field configuration */
export declare function hidden<T>(label: string, hint: Hint, options?: WithoutLabel<FieldOptions<T>>): HiddenField<T>;