Repository URL to install this package:
|
Version:
0.0.15 ▾
|
import { FormStateType } from '@skava/packages/ui/forms';
export interface StateProps {
toggleCheckBox: () => void;
isCheckboxSelected: boolean;
}
export interface OnChangeState extends FormStateType {
value?: string;
isValidInput?: boolean;
}
export interface OnChangeProps {
value: string;
state: OnChangeState;
}
export interface RegisterUserProps {
onBack: () => void;
onNext: () => void;
onClose: () => void;
}