12 lines
271 B
TypeScript
12 lines
271 B
TypeScript
/**
|
|
* Created by jiangzhixiong on 2024/03/18
|
|
*/
|
|
import { FC } from 'react';
|
|
import { FormProps } from 'antd';
|
|
interface PasswordProps {
|
|
onFinish: FormProps['onFinish'];
|
|
onCancel: () => void;
|
|
}
|
|
declare const Password: FC<PasswordProps>;
|
|
export default Password;
|