diff --git a/components/FxInput/FxInput.d.ts b/components/FxInput/FxInput.d.ts index 3e54a92dfa3..38fe9babd5b 100644 --- a/components/FxInput/FxInput.d.ts +++ b/components/FxInput/FxInput.d.ts @@ -2,10 +2,10 @@ import * as React from 'react'; import { InputProps } from '../Input'; -export interface FxInputProps extends InputProps { +export type FxInputProps = InputProps & { auto?: boolean; type?: 'currency' | 'text'; -} +}; export interface FxInputState {}