// SPDX-FileCopyrightText: 2022 Johannes Loher // // SPDX-License-Identifier: MIT import { DS4Item } from "../item"; export class DS4Shield extends DS4Item {} export interface DS4Shield { data: foundry.data.ItemData & { type: "shield"; _source: { type: "shield" } }; }