/* * @Author: your name * @Date: 2021-11-11 14:30:19 * @LastEditTime: 2021-11-11 14:30:20 * @LastEditors: Please set LastEditors * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE * @FilePath: /KC-MiddlePlatform/src/components/kc-select/index.d.ts */ declare namespace KCSelectType { type KCSelectPropsType = { data:optionsType[], optionProps?:optionsPropsType, [key:string]:any } type optionsPropsType = { //值参考antd Select [key:string]:any } type optionsType = { key:string, value:string } }