UNPKG

alinea

Version:

[![npm](https://img.shields.io/npm/v/alinea.svg)](https://npmjs.org/package/alinea) [![install size](https://packagephobia.com/badge?p=alinea)](https://packagephobia.com/result?p=alinea)

9 lines (8 loc) 460 B
import { Field, FieldMeta, FieldOptions } from '../Field.js'; import { ListMutator, ListRow } from '../shape/ListShape.js'; import { RecordShape } from '../shape/RecordShape.js'; export declare class ListField<Row extends ListRow, Options extends FieldOptions<Array<Row>>> extends Field<Array<Row>, ListMutator<Row>, Options> { constructor(shape: { [key: string]: RecordShape<any>; }, meta: FieldMeta<Array<Row>, ListMutator<Row>, Options>); }