@league-of-foundry-developers/foundry-vtt-types 13.346.0-beta.20251002185327 → 13.346.0-beta.20251004213306
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +4 -4
- package/src/configuration/globals.d.mts +221 -0
- package/src/foundry/client/canvas/groups/canvas-group-mixin.d.mts +1 -0
- package/src/foundry/client/canvas/loader.d.mts +5 -3
- package/src/foundry/client/canvas/perception/vision-mode.d.mts +5 -1
- package/src/foundry/client/client.d.mts +394 -0
- package/src/foundry/client/config.d.mts +1 -1
- package/src/foundry/client/helpers/client-settings.d.mts +2 -0
- package/src/foundry/client/utils/_module.d.mts +1 -0
- package/src/foundry/common/abstract/document.d.mts +3 -0
- package/src/foundry/common/documents/active-effect.d.mts +1 -0
- package/src/foundry/common/documents/actor-delta.d.mts +1 -0
- package/src/foundry/common/documents/actor.d.mts +1 -0
- package/src/foundry/common/documents/adventure.d.mts +1 -0
- package/src/foundry/common/documents/ambient-light.d.mts +1 -0
- package/src/foundry/common/documents/ambient-sound.d.mts +1 -0
- package/src/foundry/common/documents/card.d.mts +1 -0
- package/src/foundry/common/documents/cards.d.mts +1 -0
- package/src/foundry/common/documents/chat-message.d.mts +1 -0
- package/src/foundry/common/documents/combat.d.mts +1 -0
- package/src/foundry/common/documents/combatant-group.d.mts +1 -0
- package/src/foundry/common/documents/combatant.d.mts +1 -0
- package/src/foundry/common/documents/drawing.d.mts +1 -0
- package/src/foundry/common/documents/fog-exploration.d.mts +1 -0
- package/src/foundry/common/documents/folder.d.mts +1 -0
- package/src/foundry/common/documents/item.d.mts +1 -0
- package/src/foundry/common/documents/journal-entry-category.d.mts +1 -0
- package/src/foundry/common/documents/journal-entry-page.d.mts +1 -0
- package/src/foundry/common/documents/journal-entry.d.mts +1 -0
- package/src/foundry/common/documents/macro.d.mts +3 -0
- package/src/foundry/common/documents/measured-template.d.mts +1 -0
- package/src/foundry/common/documents/note.d.mts +1 -0
- package/src/foundry/common/documents/playlist-sound.d.mts +1 -0
- package/src/foundry/common/documents/playlist.d.mts +1 -0
- package/src/foundry/common/documents/region-behavior.d.mts +1 -0
- package/src/foundry/common/documents/region.d.mts +1 -0
- package/src/foundry/common/documents/roll-table.d.mts +1 -0
- package/src/foundry/common/documents/scene.d.mts +1 -0
- package/src/foundry/common/documents/setting.d.mts +1 -0
- package/src/foundry/common/documents/table-result.d.mts +3 -0
- package/src/foundry/common/documents/tile.d.mts +1 -0
- package/src/foundry/common/documents/token.d.mts +1 -0
- package/src/foundry/common/documents/user.d.mts +1 -0
- package/src/foundry/common/documents/wall.d.mts +1 -0
- package/src/foundry/common/grid/base.d.mts +1 -1
- package/src/foundry/common/grid/grid-hex.d.mts +1 -1
- package/src/foundry/common/grid/hexagonal.d.mts +1 -1
- package/src/foundry/common/packages/base-module.d.mts +2 -0
- package/src/foundry/common/packages/base-system.d.mts +2 -0
- package/src/foundry/common/packages/base-world.d.mts +2 -0
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
3
3
|
"name": "@league-of-foundry-developers/foundry-vtt-types",
|
4
|
-
"version": "13.346.0-beta.
|
4
|
+
"version": "13.346.0-beta.20251004213306",
|
5
5
|
"description": "TypeScript type definitions for Foundry VTT",
|
6
6
|
"type": "module",
|
7
7
|
"types": "./src/index.d.mts",
|
@@ -152,7 +152,7 @@
|
|
152
152
|
"eslint-config-prettier": "^10.0.1",
|
153
153
|
"eslint-import-resolver-typescript": "^4.3.2",
|
154
154
|
"eslint-plugin-import-x": "^4.6.1",
|
155
|
-
"eslint-plugin-jsdoc": "^
|
155
|
+
"eslint-plugin-jsdoc": "^60.7.1",
|
156
156
|
"eslint-plugin-tsdoc": "^0.4.0",
|
157
157
|
"globals": "^16.0.0",
|
158
158
|
"husky": "^9.1.4",
|
@@ -161,10 +161,10 @@
|
|
161
161
|
"npm-run-all2": "^8.0.1",
|
162
162
|
"pathe": "^2.0.2",
|
163
163
|
"prettier": "^3.0.3",
|
164
|
-
"type-fest": "^
|
164
|
+
"type-fest": "^5.0.1",
|
165
165
|
"typescript": "^5.8.2",
|
166
166
|
"typescript-eslint": "^8.31.0",
|
167
|
-
"vitest": "^4.0.0-beta.
|
167
|
+
"vitest": "^4.0.0-beta.13"
|
168
168
|
},
|
169
169
|
"overrides": {
|
170
170
|
"expect-type": "^1.2.2"
|
@@ -15,287 +15,508 @@ import { default as AlphaBlurFilter, AlphaBlurFilterPass } from "#client/canvas/
|
|
15
15
|
import { ShaderField } from "#client/data/fields.mjs";
|
16
16
|
import { DarknessLevelContainer } from "#client/canvas/layers/_module.mjs";
|
17
17
|
|
18
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
18
19
|
export import AVSettings = globalThis.AVSettings;
|
20
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
19
21
|
export import AbstractBaseFilter = globalThis.AbstractBaseFilter;
|
22
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
20
23
|
export import AbstractBaseMaskFilter = globalThis.AbstractBaseMaskFilter;
|
24
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
21
25
|
export import AbstractBaseShader = globalThis.AbstractBaseShader;
|
26
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
22
27
|
export import AbstractDarknessLevelRegionShader = globalThis.AbstractDarknessLevelRegionShader;
|
28
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
23
29
|
export import AbstractWeatherShader = globalThis.AbstractWeatherShader;
|
24
30
|
export import ActiveEffect = globalThis.ActiveEffect;
|
25
31
|
export import Actor = globalThis.Actor;
|
26
32
|
export import ActorDelta = globalThis.ActorDelta;
|
33
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
27
34
|
export import Actors = globalThis.Actors;
|
35
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
28
36
|
export import AdaptiveBackgroundShader = globalThis.AdaptiveBackgroundShader;
|
37
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
29
38
|
export import AdaptiveColorationShader = globalThis.AdaptiveColorationShader;
|
39
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
30
40
|
export import AdaptiveDarknessShader = globalThis.AdaptiveDarknessShader;
|
41
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
31
42
|
export import AdaptiveFragmentChannelMixin = globalThis.AdaptiveFragmentChannelMixin;
|
43
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
32
44
|
export import AdaptiveIlluminationShader = globalThis.AdaptiveIlluminationShader;
|
45
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
33
46
|
export import AdaptiveLightingShader = globalThis.AdaptiveLightingShader;
|
47
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
34
48
|
export import AdaptiveVisionShader = globalThis.AdaptiveVisionShader;
|
49
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
35
50
|
export import AdjustDarknessLevelRegionShader = globalThis.AdjustDarknessLevelRegionShader;
|
36
51
|
export import Adventure = globalThis.Adventure;
|
52
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
37
53
|
export import AlertPing = globalThis.AlertPing;
|
38
54
|
|
39
55
|
// The two following are (possibly erroneously) not re-exported by their `_module.mjs`, despite being previously global and not `@internal`
|
40
56
|
|
41
57
|
/** @deprecated No longer global as of v13.344, nor exported anywhere accessible */
|
58
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
42
59
|
export import AlphaBlurFilter = AlphaBlurFilter;
|
43
60
|
|
44
61
|
/** @deprecated No longer global as of v13.344, nor exported anywhere accessible */
|
62
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
45
63
|
export import AlphaBlurFilterPass = AlphaBlurFilterPass;
|
46
64
|
|
65
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
47
66
|
export import AmbientLight = globalThis.AmbientLight;
|
48
67
|
export import AmbientLightDocument = globalThis.AmbientLightDocument;
|
68
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
49
69
|
export import AmbientSound = globalThis.AmbientSound;
|
50
70
|
export import AmbientSoundDocument = globalThis.AmbientSoundDocument;
|
71
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
51
72
|
export import AmplificationBackgroundVisionShader = globalThis.AmplificationBackgroundVisionShader;
|
73
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
52
74
|
export import AmplificationSamplerShader = globalThis.AmplificationSamplerShader;
|
53
75
|
export import Array = globalThis.Array;
|
76
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
54
77
|
export import ArrowPing = globalThis.ArrowPing;
|
55
78
|
export import AudioNode = globalThis.AudioNode;
|
79
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
56
80
|
export import AutumnLeavesWeatherEffect = globalThis.AutumnLeavesWeatherEffect;
|
81
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
57
82
|
export import BackgroundVisionShader = globalThis.BackgroundVisionShader;
|
83
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
58
84
|
export import BaseSamplerShader = globalThis.BaseSamplerShader;
|
85
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
59
86
|
export import BaseShaderMixin = globalThis.BaseShaderMixin;
|
87
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
60
88
|
export import BaselineIlluminationSamplerShader = globalThis.BaselineIlluminationSamplerShader;
|
89
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
61
90
|
export import BatchRenderer = globalThis.BatchRenderer;
|
91
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
62
92
|
export import BatchShaderGenerator = globalThis.BatchShaderGenerator;
|
93
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
63
94
|
export import BewitchingWaveColorationShader = globalThis.BewitchingWaveColorationShader;
|
95
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
64
96
|
export import BewitchingWaveIlluminationShader = globalThis.BewitchingWaveIlluminationShader;
|
97
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
65
98
|
export import BlackHoleDarknessShader = globalThis.BlackHoleDarknessShader;
|
99
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
66
100
|
export import BLEND_MODES = globalThis.BLEND_MODES;
|
67
101
|
export import CONFIG = globalThis.CONFIG;
|
102
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
68
103
|
export import CachedContainer = globalThis.CachedContainer;
|
104
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
69
105
|
export import Canvas = globalThis.Canvas;
|
106
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
70
107
|
export import CanvasAnimation = globalThis.CanvasAnimation;
|
108
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
71
109
|
export import CanvasBackgroundAlterationEffects = globalThis.CanvasBackgroundAlterationEffects;
|
110
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
72
111
|
export import CanvasColorationEffects = globalThis.CanvasColorationEffects;
|
112
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
73
113
|
export import CanvasDarknessEffects = globalThis.CanvasDarknessEffects;
|
114
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
74
115
|
export import CanvasDepthMask = globalThis.CanvasDepthMask;
|
116
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
75
117
|
export import CanvasGroupMixin = globalThis.CanvasGroupMixin;
|
118
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
76
119
|
export import CanvasIlluminationEffects = globalThis.CanvasIlluminationEffects;
|
120
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
77
121
|
export import CanvasLayer = globalThis.CanvasLayer;
|
122
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
78
123
|
export import CanvasOcclusionMask = globalThis.CanvasOcclusionMask;
|
124
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
79
125
|
export import CanvasQuadtree = globalThis.CanvasQuadtree;
|
126
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
80
127
|
export import CanvasTransformMixin = globalThis.CanvasTransformMixin;
|
128
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
81
129
|
export import CanvasVisibility = globalThis.CanvasVisibility;
|
130
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
82
131
|
export import CanvasVisionMask = globalThis.CanvasVisionMask;
|
83
132
|
export import Card = globalThis.Card;
|
133
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
84
134
|
export import CardStacks = globalThis.CardStacks;
|
85
135
|
export import Cards = globalThis.Cards;
|
136
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
86
137
|
export import ChatBubbles = globalThis.ChatBubbles;
|
87
138
|
export import ChatMessage = globalThis.ChatMessage;
|
139
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
88
140
|
export import ChevronPing = globalThis.ChevronPing;
|
141
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
89
142
|
export import ChromaColorationShader = globalThis.ChromaColorationShader;
|
90
143
|
export import ClientDocument = globalThis.ClientDocument;
|
91
144
|
export import ClipperLib = globalThis.ClipperLib;
|
145
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
92
146
|
export import ClockwiseSweepPolygon = globalThis.ClockwiseSweepPolygon;
|
147
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
93
148
|
export import ColorAdjustmentsSamplerShader = globalThis.ColorAdjustmentsSamplerShader;
|
149
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
94
150
|
export import ColorationVisionShader = globalThis.ColorationVisionShader;
|
95
151
|
export import Combat = globalThis.Combat;
|
152
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
96
153
|
export import CombatEncounters = globalThis.CombatEncounters;
|
97
154
|
export import Combatant = globalThis.Combatant;
|
155
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
98
156
|
export import CompendiumCollection = globalThis.CompendiumCollection;
|
157
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
99
158
|
export import CompendiumPacks = globalThis.CompendiumPacks;
|
159
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
100
160
|
export import ControlIcon = globalThis.ControlIcon;
|
161
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
101
162
|
export import ControlsLayer = globalThis.ControlsLayer;
|
163
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
102
164
|
export import Cursor = globalThis.Cursor;
|
103
165
|
|
104
166
|
/** @deprecated No longer global as of 13.345, nor exported anywhere accessible */
|
167
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
105
168
|
export import DarknessLevelContainer = DarknessLevelContainer;
|
106
169
|
|
170
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
107
171
|
export import DepthSamplerShader = globalThis.DepthSamplerShader;
|
172
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
108
173
|
export import DetectionMode = globalThis.DetectionMode;
|
174
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
109
175
|
export import DetectionModeAll = globalThis.DetectionModeAll;
|
176
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
110
177
|
export import DetectionModeLightPerception = globalThis.DetectionModeLightPerception;
|
178
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
111
179
|
export import DetectionModeInvisibility = globalThis.DetectionModeInvisibility;
|
180
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
112
181
|
export import DetectionModeBasicSight = globalThis.DetectionModeBasicSight;
|
182
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
113
183
|
export import DetectionModeTremor = globalThis.DetectionModeTremor;
|
184
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
114
185
|
export import DirectoryCollectionMixin = globalThis.DirectoryCollectionMixin;
|
186
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
115
187
|
export import DocumentCollection = globalThis.DocumentCollection;
|
188
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
116
189
|
export import DoorControl = globalThis.DoorControl;
|
190
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
117
191
|
export import Drawing = globalThis.Drawing;
|
118
192
|
export import DrawingDocument = globalThis.DrawingDocument;
|
193
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
119
194
|
export import DrawingsLayer = globalThis.DrawingsLayer;
|
195
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
120
196
|
export import DynamicRingData = globalThis.DynamicRingData;
|
197
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
121
198
|
export import EffectsCanvasGroup = globalThis.EffectsCanvasGroup;
|
199
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
122
200
|
export import EmanationColorationShader = globalThis.EmanationColorationShader;
|
201
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
123
202
|
export import EnergyFieldColorationShader = globalThis.EnergyFieldColorationShader;
|
203
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
124
204
|
export import EnvironmentCanvasGroup = globalThis.EnvironmentCanvasGroup;
|
205
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
125
206
|
export import FairyLightColorationShader = globalThis.FairyLightColorationShader;
|
207
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
126
208
|
export import FairyLightIlluminationShader = globalThis.FairyLightIlluminationShader;
|
209
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
127
210
|
export import FlameColorationShader = globalThis.FlameColorationShader;
|
211
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
128
212
|
export import FlameIlluminationShader = globalThis.FlameIlluminationShader;
|
213
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
129
214
|
export import FogColorationShader = globalThis.FogColorationShader;
|
130
215
|
export import FogExploration = globalThis.FogExploration;
|
216
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
131
217
|
export import FogExplorations = globalThis.FogExplorations;
|
218
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
132
219
|
export import FogManager = globalThis.FogManager;
|
220
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
133
221
|
export import FogSamplerShader = globalThis.FogSamplerShader;
|
222
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
134
223
|
export import FogShader = globalThis.FogShader;
|
135
224
|
export import Folder = globalThis.Folder;
|
225
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
136
226
|
export import Folders = globalThis.Folders;
|
227
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
137
228
|
export import ForceGridColorationShader = globalThis.ForceGridColorationShader;
|
229
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
138
230
|
export import FramebufferSnapshot = globalThis.FramebufferSnapshot;
|
231
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
139
232
|
export import FullCanvasObjectMixin = globalThis.FullCanvasObjectMixin;
|
233
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
140
234
|
export import GhostLightColorationShader = globalThis.GhostLightColorationShader;
|
235
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
141
236
|
export import GhostLightIlluminationShader = globalThis.GhostLightIlluminationShader;
|
237
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
142
238
|
export import GlowOverlayFilter = globalThis.GlowOverlayFilter;
|
239
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
143
240
|
export import GridLayer = globalThis.GridLayer;
|
241
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
144
242
|
export import GridMesh = globalThis.GridMesh;
|
243
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
145
244
|
export import GridHighlight = globalThis.GridHighlight;
|
245
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
146
246
|
export import GridShader = globalThis.GridShader;
|
247
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
147
248
|
export import HexaDomeColorationShader = globalThis.HexaDomeColorationShader;
|
249
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
148
250
|
export import HiddenCanvasGroup = globalThis.HiddenCanvasGroup;
|
251
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
149
252
|
export import HighlightRegionShader = globalThis.HighlightRegionShader;
|
150
253
|
export import Hooks = globalThis.Hooks;
|
254
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
151
255
|
export import IlluminationDarknessLevelRegionShader = globalThis.IlluminationDarknessLevelRegionShader;
|
256
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
152
257
|
export import IlluminationVisionShader = globalThis.IlluminationVisionShader;
|
258
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
153
259
|
export import InteractionLayer = globalThis.InteractionLayer;
|
260
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
154
261
|
export import InterfaceCanvasGroup = globalThis.InterfaceCanvasGroup;
|
262
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
155
263
|
export import InvisibilityFilter = globalThis.InvisibilityFilter;
|
156
264
|
export import Item = globalThis.Item;
|
265
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
157
266
|
export import Items = globalThis.Items;
|
267
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
158
268
|
export import Journal = globalThis.Journal;
|
159
269
|
export import JournalEntry = globalThis.JournalEntry;
|
160
270
|
export import JournalEntryPage = globalThis.JournalEntryPage;
|
271
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
161
272
|
export import LightDomeColorationShader = globalThis.LightDomeColorationShader;
|
273
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
162
274
|
export import LightingLayer = globalThis.LightingLayer;
|
275
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
163
276
|
export import LimitedAnglePolygon = globalThis.LimitedAnglePolygon;
|
164
277
|
export import LoadTexture = globalThis.LoadTexture;
|
165
278
|
export import Macro = globalThis.Macro;
|
279
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
166
280
|
export import Macros = globalThis.Macros;
|
281
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
167
282
|
export import MagicalGloomDarknessShader = globalThis.MagicalGloomDarknessShader;
|
283
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
168
284
|
export import MeasuredTemplate = globalThis.MeasuredTemplate;
|
169
285
|
export import MeasuredTemplateDocument = globalThis.MeasuredTemplateDocument;
|
286
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
170
287
|
export import Messages = globalThis.Messages;
|
288
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
171
289
|
export import MouseInteractionManager = globalThis.MouseInteractionManager;
|
290
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
172
291
|
export import Note = globalThis.Note;
|
173
292
|
export import NoteDocument = globalThis.NoteDocument;
|
293
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
174
294
|
export import NotesLayer = globalThis.NotesLayer;
|
175
295
|
|
176
296
|
/** @deprecated No deprecated global provided by foundry as of 13.345 */
|
297
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
177
298
|
export import ObservableTransform = foundry.canvas.geometry.ObservableTransform;
|
178
299
|
|
300
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
179
301
|
export import OccludableSamplerShader = globalThis.OccludableSamplerShader;
|
302
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
180
303
|
export import OutlineOverlayFilter = globalThis.OutlineOverlayFilter;
|
304
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
181
305
|
export import OverlayCanvasGroup = globalThis.OverlayCanvasGroup;
|
182
306
|
export import PIXI = globalThis.PIXI;
|
307
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
183
308
|
export import ParticleEffect = globalThis.ParticleEffect;
|
309
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
184
310
|
export import PerceptionManager = globalThis.PerceptionManager;
|
311
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
185
312
|
export import Ping = globalThis.Ping;
|
313
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
186
314
|
export import PlaceableObject = globalThis.PlaceableObject;
|
315
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
187
316
|
export import PlaceablesLayer = globalThis.PlaceablesLayer;
|
188
317
|
export import Playlist = globalThis.Playlist;
|
189
318
|
export import PlaylistSound = globalThis.PlaylistSound;
|
319
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
190
320
|
export import Playlists = globalThis.Playlists;
|
321
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
191
322
|
export import PolygonMesher = globalThis.PolygonMesher;
|
323
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
192
324
|
export import PointSourcePolygon = globalThis.PointSourcePolygon;
|
325
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
193
326
|
export import PointSourceMesh = globalThis.PointSourceMesh;
|
327
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
194
328
|
export import PreciseText = globalThis.PreciseText;
|
329
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
195
330
|
export import PrimaryBaseSamplerShader = globalThis.PrimaryBaseSamplerShader;
|
331
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
196
332
|
export import PrimaryCanvasGroup = globalThis.PrimaryCanvasGroup;
|
333
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
197
334
|
export import PrimaryCanvasContainer = globalThis.PrimaryCanvasContainer;
|
335
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
198
336
|
export import PrimaryCanvasGroupAmbienceFilter = globalThis.PrimaryCanvasGroupAmbienceFilter;
|
337
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
199
338
|
export import PrimaryCanvasObjectMixin = globalThis.PrimaryCanvasObjectMixin;
|
339
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
200
340
|
export import PrimaryGraphics = globalThis.PrimaryGraphics;
|
341
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
201
342
|
export import PrimaryOccludableObjectMixin = globalThis.PrimaryOccludableObjectMixin;
|
343
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
202
344
|
export import PrimaryParticleEffect = globalThis.PrimaryParticleEffect;
|
345
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
203
346
|
export import PrimarySpriteMesh = globalThis.PrimarySpriteMesh;
|
347
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
204
348
|
export import PulseColorationShader = globalThis.PulseColorationShader;
|
349
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
205
350
|
export import PulseIlluminationShader = globalThis.PulseIlluminationShader;
|
351
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
206
352
|
export import PulsePing = globalThis.PulsePing;
|
353
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
207
354
|
export import Quadtree = globalThis.Quadtree;
|
355
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
208
356
|
export import QuadMesh = globalThis.QuadMesh;
|
357
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
209
358
|
export import RadialRainbowColorationShader = globalThis.RadialRainbowColorationShader;
|
359
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
210
360
|
export import RainShader = globalThis.RainShader;
|
361
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
211
362
|
export import Ray = globalThis.Ray;
|
363
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
212
364
|
export import Region = globalThis.Region;
|
213
365
|
export import RegionBehavior = globalThis.RegionBehavior;
|
214
366
|
export import RegionDocument = globalThis.RegionDocument;
|
367
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
215
368
|
export import RegionGeometry = globalThis.RegionGeometry;
|
369
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
216
370
|
export import RegionLayer = globalThis.RegionLayer;
|
371
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
217
372
|
export import RegionPolygonTree = globalThis.RegionPolygonTree;
|
373
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
218
374
|
export import RegionShader = globalThis.RegionShader;
|
375
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
219
376
|
export import RegionShape = globalThis.RegionShape;
|
377
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
220
378
|
export import RegionMesh = globalThis.RegionMesh;
|
221
379
|
|
222
380
|
/** @deprecated Use {@linkcode foundry.canvas.interaction.RenderFlag} instead */
|
381
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
223
382
|
export import RenderFlag = foundry.canvas.interaction.RenderFlag;
|
224
383
|
|
384
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
225
385
|
export import RenderFlagsMixin = globalThis.RenderFlagsMixin;
|
386
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
226
387
|
export import RenderFlags = globalThis.RenderFlags;
|
388
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
227
389
|
export import RenderedCanvasGroup = globalThis.RenderedCanvasGroup;
|
390
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
228
391
|
export import ResizeHandle = globalThis.ResizeHandle;
|
392
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
229
393
|
export import RevolvingColorationShader = globalThis.RevolvingColorationShader;
|
394
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
230
395
|
export import RoilingDarknessShader = globalThis.RoilingDarknessShader;
|
231
396
|
export import RollTable = globalThis.RollTable;
|
397
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
232
398
|
export import RollTables = globalThis.RollTables;
|
399
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
233
400
|
export import Ruler = globalThis.Ruler;
|
234
401
|
export import Scene = globalThis.Scene;
|
402
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
235
403
|
export import SceneManager = globalThis.SceneManager;
|
404
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
236
405
|
export import Scenes = globalThis.Scenes;
|
237
406
|
export import Setting = globalThis.Setting;
|
238
407
|
|
239
408
|
/** @deprecated No longer global as of 13.345, nor exported anywhere accessible */
|
409
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
240
410
|
export import ShaderField = ShaderField;
|
241
411
|
|
242
412
|
export import SimplePeer = globalThis.SimplePeer;
|
413
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
243
414
|
export import SirenColorationShader = globalThis.SirenColorationShader;
|
415
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
244
416
|
export import SirenIlluminationShader = globalThis.SirenIlluminationShader;
|
417
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
245
418
|
export import SMAAFilter = globalThis.SMAAFilter;
|
419
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
246
420
|
export import SmokePatchColorationShader = globalThis.SmokePatchColorationShader;
|
421
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
247
422
|
export import SmokePatchIlluminationShader = globalThis.SmokePatchIlluminationShader;
|
423
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
248
424
|
export import SmoothNoise = globalThis.SmoothNoise;
|
425
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
249
426
|
export import SnowShader = globalThis.SnowShader;
|
427
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
250
428
|
export import SoundsLayer = globalThis.SoundsLayer;
|
429
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
251
430
|
export import SpriteMesh = globalThis.SpriteMesh;
|
431
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
252
432
|
export import StarLightColorationShader = globalThis.StarLightColorationShader;
|
253
433
|
export import String = globalThis.String;
|
434
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
254
435
|
export import SunburstColorationShader = globalThis.SunburstColorationShader;
|
436
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
255
437
|
export import SunburstIlluminationShader = globalThis.SunburstIlluminationShader;
|
438
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
256
439
|
export import SwirlingRainbowColorationShader = globalThis.SwirlingRainbowColorationShader;
|
257
440
|
export import TableResult = globalThis.TableResult;
|
441
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
258
442
|
export import TemplateLayer = globalThis.TemplateLayer;
|
443
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
259
444
|
export import TextureCompressor = globalThis.TextureCompressor;
|
445
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
260
446
|
export import TextureExtractor = globalThis.TextureExtractor;
|
447
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
261
448
|
export import TextureLoader = globalThis.TextureLoader;
|
449
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
262
450
|
export import TextureTransitionFilter = globalThis.TextureTransitionFilter;
|
451
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
263
452
|
export import Tile = globalThis.Tile;
|
264
453
|
export import TileDocument = globalThis.TileDocument;
|
454
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
265
455
|
export import TilesLayer = globalThis.TilesLayer;
|
456
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
266
457
|
export import Token = globalThis.Token;
|
267
458
|
export import TokenDocument = globalThis.TokenDocument;
|
459
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
268
460
|
export import TokenLayer = globalThis.TokenLayer;
|
461
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
269
462
|
export import TokenRing = globalThis.TokenRing;
|
463
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
270
464
|
export import TokenRingConfig = globalThis.TokenRingConfig;
|
465
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
271
466
|
export import TokenRingSamplerShader = globalThis.TokenRingSamplerShader;
|
467
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
272
468
|
export import TorchColorationShader = globalThis.TorchColorationShader;
|
469
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
273
470
|
export import TorchIlluminationShader = globalThis.TorchIlluminationShader;
|
471
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
274
472
|
export import UnboundContainer = globalThis.UnboundContainer;
|
473
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
275
474
|
export import UnboundTransform = globalThis.UnboundTransform;
|
276
475
|
export import User = globalThis.User;
|
476
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
277
477
|
export import UserTargets = globalThis.UserTargets;
|
478
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
278
479
|
export import Users = globalThis.Users;
|
480
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
279
481
|
export import VisibilityFilter = globalThis.VisibilityFilter;
|
482
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
280
483
|
export import VisionMaskFilter = globalThis.VisionMaskFilter;
|
484
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
281
485
|
export import VisionMode = globalThis.VisionMode;
|
486
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
282
487
|
export import VisualEffectsMaskingFilter = globalThis.VisualEffectsMaskingFilter;
|
488
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
283
489
|
export import VoidFilter = globalThis.VoidFilter;
|
490
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
284
491
|
export import VortexColorationShader = globalThis.VortexColorationShader;
|
492
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
285
493
|
export import VortexIlluminationShader = globalThis.VortexIlluminationShader;
|
494
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
286
495
|
export import Wall = globalThis.Wall;
|
287
496
|
export import WallDocument = globalThis.WallDocument;
|
497
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
288
498
|
export import WallsLayer = globalThis.WallsLayer;
|
499
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
289
500
|
export import WaveBackgroundVisionShader = globalThis.WaveBackgroundVisionShader;
|
501
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
290
502
|
export import WaveColorationShader = globalThis.WaveColorationShader;
|
503
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
291
504
|
export import WaveColorationVisionShader = globalThis.WaveColorationVisionShader;
|
505
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
292
506
|
export import WaveIlluminationShader = globalThis.WaveIlluminationShader;
|
507
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
293
508
|
export import WeatherEffects = globalThis.WeatherEffects;
|
509
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
294
510
|
export import WeatherOcclusionMaskFilter = globalThis.WeatherOcclusionMaskFilter;
|
511
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
295
512
|
export import WeatherShaderEffect = globalThis.WeatherShaderEffect;
|
513
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
296
514
|
export import WeilerAthertonClipper = globalThis.WeilerAthertonClipper;
|
515
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
297
516
|
export import WorldCollection = globalThis.WorldCollection;
|
517
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
298
518
|
export import WorldSettings = globalThis.WorldSettings;
|
519
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
299
520
|
export import loadTexture = globalThis.loadTexture;
|
300
521
|
export import foundry = globalThis.foundry;
|
301
522
|
export import io = globalThis.io;
|
@@ -71,7 +71,7 @@ declare class TextureLoader {
|
|
71
71
|
* @param src - The resource URL
|
72
72
|
* @param options - Options to configure the loading behaviour.
|
73
73
|
* @returns A Blob containing the loaded data
|
74
|
-
* @remarks As of v13, simply forwards to {@linkcode foundry.utils.fetchResource}; Foundry comments
|
74
|
+
* @remarks As of v13, simply forwards to {@linkcode foundry.utils.fetchResource}; Foundry comments "TODO \@deprecated in v14"
|
75
75
|
*/
|
76
76
|
static fetchResource(src: string, options?: TextureLoader.FetchResourceOptions): Promise<Blob>;
|
77
77
|
|
@@ -98,7 +98,7 @@ declare class TextureLoader {
|
|
98
98
|
* Return a URL with a cache-busting query parameter appended.
|
99
99
|
* @param src - The source URL being attempted
|
100
100
|
* @returns The new URL, or false on a failure.
|
101
|
-
* @remarks As of v13, simply forwards to {@linkcode foundry.utils.getCacheBustURL}; Foundry comments
|
101
|
+
* @remarks As of v13, simply forwards to {@linkcode foundry.utils.getCacheBustURL}; Foundry comments "TODO \@deprecated in v14"
|
102
102
|
*/
|
103
103
|
static getCacheBustURL(src: string): string | false;
|
104
104
|
|
@@ -269,7 +269,7 @@ declare namespace TextureLoader {
|
|
269
269
|
* Test whether a file source exists by performing a HEAD request against it
|
270
270
|
* @param src - The source URL or path to test
|
271
271
|
* @returns Does the file exist at the provided url?
|
272
|
-
* @remarks As of v13, simply forwards to {@linkcode foundry.utils.srcExists}; Foundry comments
|
272
|
+
* @remarks As of v13, simply forwards to {@linkcode foundry.utils.srcExists}; Foundry comments "TODO \@deprecated in v14"
|
273
273
|
*/
|
274
274
|
export declare function srcExists(src: string): Promise<boolean>;
|
275
275
|
|
@@ -304,9 +304,11 @@ declare namespace loadTexture {
|
|
304
304
|
declare global {
|
305
305
|
namespace LoadTexture {
|
306
306
|
/** @deprecated Use {@linkcode foundry.canvas.loadTexture.Return} instead */
|
307
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
307
308
|
export import Return = loadTexture.Return;
|
308
309
|
|
309
310
|
/** @deprecated Use {@linkcode foundry.canvas.loadTexture.Options} instead */
|
311
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
310
312
|
export import Options = loadTexture.Options;
|
311
313
|
}
|
312
314
|
}
|
@@ -198,7 +198,11 @@ declare namespace VisionMode {
|
|
198
198
|
*/
|
199
199
|
declare const ShaderField: clientFields.ShaderField;
|
200
200
|
|
201
|
-
export {
|
201
|
+
export {
|
202
|
+
VisionMode as default,
|
203
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
204
|
+
ShaderField,
|
205
|
+
};
|
202
206
|
|
203
207
|
declare class AnyVisionMode extends VisionMode {
|
204
208
|
constructor(...args: never);
|