screepCode/src/index.d.ts

8 lines
193 B
TypeScript
Raw Normal View History

2024-11-04 13:09:46 +08:00
interface CreepMemory {
role: string,
2024-11-04 13:09:46 +08:00
working?: boolean | null,
[property: string]: any,
}
2024-11-04 13:09:46 +08:00
declare type Part = WORK | MOVE | CARRY | HEAL | ATTACK | RANGED_ATTACK | TOUGH | CLAIM;