Migrate components to typescript
This commit is contained in:
23
src/components/signup/ISignupComponentProps.ts
Normal file
23
src/components/signup/ISignupComponentProps.ts
Normal file
@@ -0,0 +1,23 @@
|
||||
export interface ISignupComponentProps {
|
||||
|
||||
/**
|
||||
* Display error
|
||||
*
|
||||
* @memberof ISignupComponentState
|
||||
*/
|
||||
showError: (message: string) => any
|
||||
|
||||
/**
|
||||
* Register user
|
||||
*
|
||||
* @memberof ISignupComponentState
|
||||
*/
|
||||
register: (data: any) => any
|
||||
|
||||
/**
|
||||
* Login
|
||||
*
|
||||
* @memberof ISignupComponentState
|
||||
*/
|
||||
loginPage: () => any
|
||||
}
|
||||
Reference in New Issue
Block a user