UNPKG

@beisen-phoenix/select

Version:

## 概述

11 lines (10 loc) 360 B
import React from "react"; import { ILang } from "./interface"; import { SelectProps } from "./components/PropsInterface"; export * from "./interface"; export * from "./components/PropsInterface"; export interface NormalSelectProps extends SelectProps { lang?: ILang; } declare const NormalSelect: React.FC<NormalSelectProps>; export default NormalSelect;