screeps-api
    Preparing search index...

    Interface ConstructionSite

    A site of a structure which is currently under construction.

    https://docs.screeps.com/api/#ConstructionSite

    interface ConstructionSite {
        _id: string;
        effects?: { [index: number]: Effect } | null;
        name?: string;
        progress: number;
        progressTotal: number;
        room: string;
        structureType: StructureType;
        type: "constructionSite";
        x: number;
        y: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    _id: string
    effects?: { [index: number]: Effect } | null

    Temporary effects that are active on this object

    name?: string
    progress: number
    progressTotal: number
    room: string
    structureType: StructureType
    type: "constructionSite"
    x: number
    y: number