Files
bitburner-src/src/@types/global.d.ts
2022-04-21 23:50:49 -07:00

14 lines
343 B
TypeScript

// Defined by webpack on startup or compilation
declare const __COMMIT_HASH__: string;
// When using file-loader, we'll get a path to the resource
declare module "*.png" {
const value: string;
export default value;
}
// Achievements communicated back to Electron shell for Steam.
declare interface Document {
achievements: string[];
}