12 lines
388 B
TypeScript
12 lines
388 B
TypeScript
// SPDX-FileCopyrightText: 2022 Johannes Loher
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
import type { DS4ItemDataSourceDataBase, DS4ItemDataSourceDataPhysical } from "../item-data-source-base";
|
|
|
|
export interface DS4LootDataSource {
|
|
type: "loot";
|
|
data: DS4LootDataSourceData;
|
|
}
|
|
|
|
export interface DS4LootDataSourceData extends DS4ItemDataSourceDataBase, DS4ItemDataSourceDataPhysical {}
|