13 lines
453 B
TypeScript
13 lines
453 B
TypeScript
// SPDX-FileCopyrightText: 2021 Johannes Loher
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
import type { DS4ItemDataPropertiesDataRollable } from "../item-data-properties-base";
|
|
import type { DS4ShieldDataSourceData } from "./shield-data-source";
|
|
|
|
export interface DS4ShieldDataProperties {
|
|
type: "shield";
|
|
data: DS4ShieldDataPropertiesData;
|
|
}
|
|
|
|
interface DS4ShieldDataPropertiesData extends DS4ShieldDataSourceData, DS4ItemDataPropertiesDataRollable {}
|