refactor: prefer type imports and sort imports
This commit is contained in:
parent
8d2cff77d7
commit
9cffa4df04
49 changed files with 124 additions and 105 deletions
|
@ -3,17 +3,18 @@
|
|||
//
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
import { ModifiableDataBaseTotal } from "../common/common-data";
|
||||
import { DS4 } from "../config";
|
||||
import { getGame } from "../helpers";
|
||||
import { DS4ArmorDataProperties } from "../item/armor/armor-data-properties";
|
||||
import { DS4Item } from "../item/item";
|
||||
import { ItemType } from "../item/item-data-source";
|
||||
import { DS4ShieldDataProperties } from "../item/shield/shield-data-properties";
|
||||
import { createCheckRoll } from "../rolls/check-factory";
|
||||
import { Check } from "./actor-data-properties-base";
|
||||
import { isAttribute, isTrait } from "./actor-data-source-base";
|
||||
|
||||
import type { ModifiableDataBaseTotal } from "../common/common-data";
|
||||
import type { DS4ArmorDataProperties } from "../item/armor/armor-data-properties";
|
||||
import type { DS4Item } from "../item/item";
|
||||
import type { ItemType } from "../item/item-data-source";
|
||||
import type { DS4ShieldDataProperties } from "../item/shield/shield-data-properties";
|
||||
import type { Check } from "./actor-data-properties-base";
|
||||
|
||||
declare global {
|
||||
interface DocumentClassConfig {
|
||||
Actor: typeof DS4Actor;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue