Enable no unused vars and add more types (#2005)
Some checks failed
Project CI / build (24.x) (push) Has been cancelled

This commit is contained in:
Carlos Fernandez 2026-06-14 16:10:49 -04:00 committed by GitHub
parent af49c1f4c8
commit 96f090bef5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
20 changed files with 141 additions and 31 deletions

View file

@ -176,7 +176,6 @@ export default class DamageReductionDialog extends HandlebarsApplicationMixin(Ap
}
static updateData(event, _, formData) {
const form = foundry.utils.expandObject(formData.object);
this.render(true);
}

View file

@ -1,4 +1,3 @@
import { abilities, subclassFeatureLabels } from '../../config/actorConfig.mjs';
import { getDeleteKeys, tagifyElement } from '../../helpers/utils.mjs';
const { HandlebarsApplicationMixin, ApplicationV2 } = foundry.applications.api;

View file

@ -1,12 +1,13 @@
import DhAppearance from '../../data/settings/Appearance.mjs';
import { getDiceSoNicePreset } from '../../config/generalConfig.mjs';
const { HandlebarsApplicationMixin, ApplicationV2 } = foundry.applications.api;
/**
* @import DhAppearance from '../../data/settings/Appearance.mjs';
* @import {ApplicationClickAction} from "@client/applications/_types.mjs"
*/
/** Settings menu for appearance settings */
export default class DHAppearanceSettings extends HandlebarsApplicationMixin(ApplicationV2) {
/**@inheritdoc */
static DEFAULT_OPTIONS = {

View file

@ -0,0 +1,8 @@
import DhCompanion from '../../../data/actor/companion.mjs';
import DhpActor from '../../../documents/actor.mjs';
declare module './companion.mjs' {
export default interface DhCompanionSheet {
actor: DhpActor<DhCompanion>;
}
}

View file

@ -1,10 +1,12 @@
import { getDocFromElement, itemIsIdentical } from '../../../helpers/utils.mjs';
import DHBaseActorSettings from './actor-setting.mjs';
import DHApplicationMixin from './application-mixin.mjs';
const { ActorSheetV2 } = foundry.applications.sheets;
/**@typedef {import('@client/applications/_types.mjs').ApplicationClickAction} ApplicationClickAction */
/**
* @import DHBaseActorSettings from './actor-setting.mjs';
* @typedef {import('@client/applications/_types.mjs').ApplicationClickAction} ApplicationClickAction
*/
/**
* A base actor sheet extending {@link ActorSheetV2} via {@link DHApplicationMixin}