mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2025-02-17 02:22:23 +01:00
5 lines
76 B
TypeScript
5 lines
76 B
TypeScript
export interface Milestone {
|
|
title: string;
|
|
fulfilled: () => boolean;
|
|
}
|