/** * 通过name查询items下标 * * @param name 字段名 * @param items 字段集合 * @param fieldName 字段名称[默认name] */ declare function findIndexItems(name: string, items: any[], fieldName?: string): number; export { findIndexItems };