Websites v4 docs v5.2.5
    Preparing search index...

    Type Alias UseStampDutyCalculatorResult

    type UseStampDutyCalculatorResult = {
        additionalProperty: boolean;
        calculationValue: number;
        country: string;
        firstTimeBuyer: boolean;
        handleChangeCalculationValue: (
            e: React.ChangeEvent<HTMLInputElement>,
        ) => void;
        resident: boolean;
        setAdditionalProperty: (value: boolean) => void;
        setFirstTimeBuyer: (value: boolean) => void;
        setResident: (value: boolean) => void;
        stampDutyData: StampDutyCalculationResult | null;
        updateCountry: (value: Country) => void;
    }
    Index

    Properties

    additionalProperty: boolean
    calculationValue: number
    country: string
    firstTimeBuyer: boolean
    handleChangeCalculationValue: (e: React.ChangeEvent<HTMLInputElement>) => void
    resident: boolean
    setAdditionalProperty: (value: boolean) => void
    setFirstTimeBuyer: (value: boolean) => void
    setResident: (value: boolean) => void
    stampDutyData: StampDutyCalculationResult | null
    updateCountry: (value: Country) => void