mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-19 15:54:09 +02:00
16 lines
343 B
TypeScript
16 lines
343 B
TypeScript
// Numeric enum
|
|
/** Allowed values for the 'OwnedAugmentationsOrder' setting */
|
|
export enum PurchaseAugmentationsOrderSetting {
|
|
Cost,
|
|
Default,
|
|
Reputation,
|
|
Purchasable,
|
|
}
|
|
|
|
// Numeric enum
|
|
/** Allowed values for the 'OwnedAugmentationsOrder' setting */
|
|
export enum OwnedAugmentationsOrderSetting {
|
|
Alphabetically,
|
|
AcquirementTime,
|
|
}
|