构造函数
constructor
- new StructRow<T extends TypeMap = any>(
parent: Data<Struct<T>>,
rowIndex: number,
): StructRow<T> 参数
- parent: Data<Struct<T>>
- rowIndex: number
方法
[迭代器]
- "[迭代器]"(): IterableIterator<
[
keyof T,
{ [P in string
| number
| symbol]: null | T[P]["TValue"] }[keyof T],
],
> >
[
keyof T,
{ [P in string
| number
| symbol]: null | T[P]["TValue"] }[keyof T],
],
>
定义于 row/struct.ts:69
- 转换为数组
toArray(): T[string]["TValue"][]
定义于 row/struct.ts:45
- 转换为JSON
toJSON(): { [P in string]: T[P]["TValue"] }