7 lines
148 B
TypeScript
7 lines
148 B
TypeScript
|
import { LootItem } from "../../../models/spt/services/LootItem";
|
||
|
|
||
|
export interface IAirdropLootResult
|
||
|
{
|
||
|
dropType: string
|
||
|
loot: LootItem[]
|
||
|
}
|