@brightlayer-ui/react-native-auth-workflow
Version:
Re-usable workflow components for Authentication and Registration within Eaton applications.
13 lines (12 loc) • 465 B
TypeScript
import { ErrorManagerProps, SetPasswordProps } from '../../components/index.js';
import { WorkflowCardProps } from '../../components/WorkflowCard/WorkflowCard.types.js';
export type CreatePasswordScreenProps = WorkflowCardProps & {
/**
* The props passed for SetPassword component
*/
PasswordProps?: SetPasswordProps;
/**
* The configuration for customizing how errors are displayed
*/
errorDisplayConfig?: ErrorManagerProps;
};