11 lines
268 B
TypeScript
11 lines
268 B
TypeScript
// SPDX-FileCopyrightText: 2022 Johannes Loher
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
import { DS4Item } from "../item";
|
|
|
|
export class DS4Loot extends DS4Item {}
|
|
|
|
export interface DS4Loot {
|
|
data: foundry.data.ItemData & { type: "loot"; _source: { type: "loot" } };
|
|
}
|