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

29 lines
413 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
/**
* Styles
*/
classes?: any
}