mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2025-01-19 20:41:30 +01:00
7 lines
137 B
TypeScript
7 lines
137 B
TypeScript
import { IPlayer } from "../PersonObjects/IPlayer";
|
|
|
|
export type Milestone = {
|
|
title: string;
|
|
fulfilled: (p: IPlayer) => boolean;
|
|
};
|