alinea
Version:
[](https://npmjs.org/package/alinea) [](https://packagephobia.com/result?p=alinea)
9 lines (8 loc) • 460 B
TypeScript
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>);
}