This repository has been archived on 2025-09-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
resolver/src/components/signup/ISignupComponentProps.ts
2017-10-30 20:48:18 +07:00

24 lines
369 B
TypeScript

export interface ISignupComponentProps {
/**
* Display error
*
* @memberof ISignupComponentState
*/
showError: (message: string) => any
/**
* Register user
*
* @memberof ISignupComponentState
*/
register: (data: any) => any
/**
* Login
*
* @memberof ISignupComponentState
*/
loginPage: () => any
}