ReferenceComponentsProject initializer
InitWizardProps
InitWizardProps component contract.
Type
export interface InitWizardProps {
readonly initialName: string;
readonly onComplete: (answers: InitAnswers) => void;
readonly onCancel: () => void;
}Members
| Member | Type | Required | Description | Related types |
|---|---|---|---|---|
initialName | string | Yes | The initialName member uses the string contract. | — |
onComplete | (answers: InitAnswers) => void | Yes | The onComplete member uses the (answers: InitAnswers) => void contract. | InitAnswers |
onCancel | () => void | Yes | The onCancel member uses the () => void contract. | — |