diff --git a/src/types.d.ts b/src/types.d.ts index 8849c13..00727b9 100644 --- a/src/types.d.ts +++ b/src/types.d.ts @@ -1 +1,20 @@ -// add your custom typings here +// example declaration file - remove these and add your own custom typings + +// memory extension samples +interface CreepMemory { + role: string; + room: string; + working: boolean; +} + +interface Memory { + uuid: number; + log: any; +} + +// `global` extension samples +declare namespace NodeJS { + interface Global { + log: any; + } +}