fvtt-types
Version:
TypeScript type definitions for Foundry VTT
11 lines (9 loc) • 513 B
text/typescript
// In Foundry itself this file contains re-exports of these other modules.
// Therefore it has a runtime effect and uses `.mjs` instead of `.d.mts`.
// While `.mts` could work, to avoid `import-x/no-unresolved` from erroring `.mjs` is used.
/* eslint-disable import-x/extensions */
export * as validators from "./validators.mjs";
export * as validation from "./validation-failure.mjs";
export * as fields from "./fields.mjs";
export * from "./data.mjs";
export { ActorDeltaField } from "../documents/token.mjs";