Variable EntityList

EntityList: {
    create(
        base?: {
            entities?: {
                data?: { fields?: { [key: string]: (...) | (...) } };
                entity?: string;
                genBlockChain?: string;
                genBlockNumber?: bigint;
                genBlockTime?: Date;
            }[];
        },
    ): EntityList;
    decode(input: Uint8Array | Reader, length?: number): EntityList;
    encode(message: EntityList, writer?: Writer): Writer;
    fromJSON(object: any): EntityList;
    fromPartial(
        object: {
            entities?: {
                data?: {
                    fields?: {
                        [key: string]:
                            | undefined
                            | {
                                bigdecimalValue?: ...;
                                bigintValue?: ...;
                                boolValue?: ...;
                                bytesValue?: ...;
                                floatValue?: ...;
                                intValue?: ...;
                                listValue?: ...;
                                nullValue?: ...;
                                stringValue?: ...;
                                structValue?: ...;
                                timestampValue?: ...;
                                tokenValue?: ...;
                            };
                    };
                };
                entity?: string;
                genBlockChain?: string;
                genBlockNumber?: bigint;
                genBlockTime?: Date;
            }[];
        },
    ): EntityList;
    toJSON(message: EntityList): unknown;
}