Interface HousingAnswer

居住に関するカーボンフットプリントを計算するための質問への回答

Hierarchy

  • HousingAnswer

Properties

electricity?: {
    consumptionOrLivingRegion: {
        month: Month;
        monthlyConsumption: number;
    } | {
        livingRegion: LivingRegion;
    };
    electricityType: ElectricityType;
    privateCar?: {
        annualMileage: number;
        carCharging?: CarCharging;
        carType: CarType;
    };
}

Type declaration

  • consumptionOrLivingRegion: {
        month: Month;
        monthlyConsumption: number;
    } | {
        livingRegion: LivingRegion;
    }

    電気の消費量もしくは居住地域

  • Readonly electricityType: ElectricityType

    電力の種類

  • Optional Readonly privateCar?: {
        annualMileage: number;
        carCharging?: CarCharging;
        carType: CarType;
    }
    • Readonly annualMileage: number

      年間走行距離[km/年]

    • Optional Readonly carCharging?: CarCharging

      自宅充電の頻度

    • Readonly carType: CarType

      車の種類

gas?: {
    consumptionOrLivingRegion: {
        month: Month;
        monthlyConsumption: number;
    } | {
        livingRegion: LivingRegion;
    };
    item: "urban-gas" | "lpg";
}

ガスの使用量

Type declaration

  • consumptionOrLivingRegion: {
        month: Month;
        monthlyConsumption: number;
    } | {
        livingRegion: LivingRegion;
    }

    ガスの消費量もしくは居住地域

  • Readonly item: "urban-gas" | "lpg"

    ガスの種類

housingInsulation?: HousingInsulation

家の断熱

housingSize?: HousingSize

住居の広さ

kerosene?: {
    monthCount: number;
    monthlyConsumption: number;
} | {
    livingRegion: LivingRegion;
}

灯油の使用量

residentCount?: number

住居者数

Generated using TypeDoc