mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-16 14:28:36 +02:00
14 lines
343 B
TypeScript
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[];
|
|
}
|