DictionarySelect.d.ts 282 Bytes
Newer Older
1 2 3 4
import * as React from 'react';
import { Select } from 'antd';

export interface IDictionarySelectProps extends Select {
sin's avatar
sin committed
5 6
  dicKey?: string;
  defaultValue?: string | number | boolean;
7 8 9
}

export default class DictionarySelectD extends React.Component<IDictionarySelectProps, any> {}