screeps-simple-api
    Preparing search index...

    Interface IRoomStatus

    房间状态

    interface IRoomStatus {
        error?: string;
        ok?: number;
        rooms:
            | null
            | {
                _id: string;
                novice?: number;
                respawnArea?: number;
                status: "normal"
                | "out of borders";
            };
        [key: string]: unknown;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: unknown
    Index

    Properties

    Properties

    error?: string
    ok?: number
    rooms:
        | null
        | {
            _id: string;
            novice?: number;
            respawnArea?: number;
            status: "normal"
            | "out of borders";
        }