@league-of-foundry-developers/foundry-vtt-types 13.346.0-beta.20250926173413 → 13.346.0-beta.20251004212159
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/documents/combat.d.mts +5 -0
- package/src/foundry/client/documents/token.d.mts +8 -19
- package/src/foundry/client/helpers/client-settings.d.mts +2 -0
- package/src/foundry/client/nue/tours/setup-tour.d.mts +2 -2
- 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
@@ -254,24 +254,28 @@ declare global {
|
|
254
254
|
* @deprecated "You are accessing the global {@linkcode Application} which is now namespaced under {@linkcode foundry.appv1.api.Application}"
|
255
255
|
* (since v13 will be removed in v16)
|
256
256
|
*/
|
257
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
257
258
|
export import Application = foundry.appv1.api.Application;
|
258
259
|
|
259
260
|
/**
|
260
261
|
* @deprecated "You are accessing the global {@linkcode Dialog} which is now namespaced under {@linkcode foundry.appv1.api.Dialog}"
|
261
262
|
* (since v13 will be removed in v16)
|
262
263
|
*/
|
264
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
263
265
|
export import Dialog = foundry.appv1.api.Dialog;
|
264
266
|
|
265
267
|
/**
|
266
268
|
* @deprecated "You are accessing the global {@linkcode FormApplication} which is now namespaced under {@linkcode foundry.appv1.api.FormApplication}"
|
267
269
|
* (since v13 will be removed in v16)
|
268
270
|
*/
|
271
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
269
272
|
export import FormApplication = foundry.appv1.api.FormApplication;
|
270
273
|
|
271
274
|
/**
|
272
275
|
* @deprecated "You are accessing the global {@linkcode DocumentSheet} which is now namespaced under {@linkcode foundry.appv1.api.DocumentSheet}"
|
273
276
|
* (since v13 will be removed in v16)
|
274
277
|
*/
|
278
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
275
279
|
export import DocumentSheet = foundry.appv1.api.DocumentSheet;
|
276
280
|
|
277
281
|
/**
|
@@ -284,474 +288,553 @@ declare global {
|
|
284
288
|
* @deprecated "You are accessing the global {@linkcode Game} which is now namespaced under {@linkcode foundry.Game}"
|
285
289
|
* (since v13 will be removed in v15)
|
286
290
|
*/
|
291
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
287
292
|
export import Game = foundry.Game;
|
288
293
|
|
289
294
|
/**
|
290
295
|
* @deprecated "You are accessing the global {@linkcode _appId} which is now namespaced under {@linkcode foundry.applications.api.ApplicationV2._appId}"
|
291
296
|
* (since v13 will be removed in v15)
|
292
297
|
*/
|
298
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
293
299
|
export import _appId = foundry.applications.api.ApplicationV2._appId;
|
294
300
|
|
295
301
|
/**
|
296
302
|
* @deprecated "You are accessing the global {@linkcode _maxZ} which is now namespaced under {@linkcode foundry.applications.api.ApplicationV2._maxZ}"
|
297
303
|
* (since v13 will be removed in v15)
|
298
304
|
*/
|
305
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
299
306
|
export import _maxZ = foundry.applications.api.ApplicationV2._maxZ;
|
300
307
|
|
301
308
|
/**
|
302
309
|
* @deprecated "You are accessing the global {@linkcode HandlebarsHelpers} which is now namespaced under {@linkcode foundry.applications.handlebars}"
|
303
310
|
* (since v13 will be removed in v15)
|
304
311
|
*/
|
312
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
305
313
|
export import HandlebarsHelpers = foundry.applications.handlebars;
|
306
314
|
|
307
315
|
/**
|
308
316
|
* @deprecated "You are accessing the global {@linkcode getTemplate} which is now namespaced under {@linkcode foundry.applications.handlebars.getTemplate}"
|
309
317
|
* (since v13 will be removed in v15)
|
310
318
|
*/
|
319
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
311
320
|
export import getTemplate = foundry.applications.handlebars.getTemplate;
|
312
321
|
|
313
322
|
/**
|
314
323
|
* @deprecated "You are accessing the global {@linkcode loadTemplates} which is now namespaced under {@linkcode foundry.applications.handlebars.loadTemplates}"
|
315
324
|
* (since v13 will be removed in v15)
|
316
325
|
*/
|
326
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
317
327
|
export import loadTemplates = foundry.applications.handlebars.loadTemplates;
|
318
328
|
|
319
329
|
/**
|
320
330
|
* @deprecated "You are accessing the global {@linkcode renderTemplate} which is now namespaced under {@linkcode foundry.applications.handlebars.renderTemplate}"
|
321
331
|
* (since v13 will be removed in v15)
|
322
332
|
*/
|
333
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
323
334
|
export import renderTemplate = foundry.applications.handlebars.renderTemplate;
|
324
335
|
|
325
336
|
/**
|
326
337
|
* @deprecated "You are accessing the global {@linkcode CombatTrackerConfig} which is now namespaced under {@linkcode foundry.applications.apps.CombatTrackerConfig}"
|
327
338
|
* (since v13 will be removed in v15)
|
328
339
|
*/
|
340
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
329
341
|
export import CombatTrackerConfig = foundry.applications.apps.CombatTrackerConfig;
|
330
342
|
|
331
343
|
/**
|
332
344
|
* @deprecated "You are accessing the global {@linkcode DocumentSheetConfig} which is now namespaced under {@linkcode foundry.applications.apps.DocumentSheetConfig}"
|
333
345
|
* (since v13 will be removed in v15)
|
334
346
|
*/
|
347
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
335
348
|
export import DocumentSheetConfig = foundry.applications.apps.DocumentSheetConfig;
|
336
349
|
|
337
350
|
/**
|
338
351
|
* @deprecated "You are accessing the global {@linkcode FilePicker} which is now namespaced under {@linkcode foundry.applications.apps.FilePicker.implementation}"
|
339
352
|
* (since v13 will be removed in v15)
|
340
353
|
*/
|
354
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
341
355
|
export import FilePicker = foundry.applications.apps.FilePicker;
|
342
356
|
|
343
357
|
/**
|
344
358
|
* @deprecated "You are accessing the global {@linkcode GridConfig} which is now namespaced under {@linkcode foundry.applications.apps.GridConfig}"
|
345
359
|
* (since v13 will be removed in v15)
|
346
360
|
*/
|
361
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
347
362
|
export import GridConfig = foundry.applications.apps.GridConfig;
|
348
363
|
|
349
364
|
/**
|
350
365
|
* @deprecated "You are accessing the global {@linkcode ImagePopout} which is now namespaced under {@linkcode foundry.applications.apps.ImagePopout}"
|
351
366
|
* (since v13 will be removed in v15)
|
352
367
|
*/
|
368
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
353
369
|
export import ImagePopout = foundry.applications.apps.ImagePopout;
|
354
370
|
|
355
371
|
/**
|
356
372
|
* @deprecated "You are accessing the global {@linkcode DocumentOwnershipConfig} which is now namespaced under {@linkcode foundry.applications.apps.DocumentOwnershipConfig}"
|
357
373
|
* (since v13 will be removed in v15)
|
358
374
|
*/
|
375
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
359
376
|
export import DocumentOwnershipConfig = foundry.applications.apps.DocumentOwnershipConfig;
|
360
377
|
|
361
378
|
/**
|
362
379
|
* @deprecated "You are accessing the global {@linkcode Hotbar} which is now namespaced under {@linkcode foundry.applications.ui.Hotbar}"
|
363
380
|
* (since v13 will be removed in v15)
|
364
381
|
*/
|
382
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
365
383
|
export import Hotbar = foundry.applications.ui.Hotbar;
|
366
384
|
|
367
385
|
/**
|
368
386
|
* @deprecated "You are accessing the global {@linkcode Pause} which is now namespaced under {@linkcode foundry.applications.ui.GamePause}"
|
369
387
|
* (since v13 will be removed in v15)
|
370
388
|
*/
|
389
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
371
390
|
export import Pause = foundry.applications.ui.GamePause;
|
372
391
|
|
373
392
|
/**
|
374
393
|
* @deprecated "You are accessing the global {@linkcode SceneControls} which is now namespaced under {@linkcode foundry.applications.ui.SceneControls}"
|
375
394
|
* (since v13 will be removed in v15)
|
376
395
|
*/
|
396
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
377
397
|
export import SceneControls = foundry.applications.ui.SceneControls;
|
378
398
|
|
379
399
|
/**
|
380
400
|
* @deprecated "You are accessing the global {@linkcode SceneNavigation} which is now namespaced under {@linkcode foundry.applications.ui.SceneNavigation}"
|
381
401
|
* (since v13 will be removed in v15)
|
382
402
|
*/
|
403
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
383
404
|
export import SceneNavigation = foundry.applications.ui.SceneNavigation;
|
384
405
|
|
385
406
|
/**
|
386
407
|
* @deprecated "You are accessing the global {@linkcode Players} which is now namespaced under {@linkcode foundry.applications.ui.Players}"
|
387
408
|
* (since v13 will be removed in v15)
|
388
409
|
*/
|
410
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
389
411
|
export import Players = foundry.applications.ui.Players;
|
390
412
|
|
391
413
|
/**
|
392
414
|
* @deprecated "You are accessing the global {@linkcode MainMenu} which is now namespaced under {@linkcode foundry.applications.ui.MainMenu}"
|
393
415
|
* (since v13 will be removed in v15)
|
394
416
|
*/
|
417
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
395
418
|
export import MainMenu = foundry.applications.ui.MainMenu;
|
396
419
|
|
397
420
|
/**
|
398
421
|
* @deprecated "You are accessing the global {@linkcode Notifications} which is now namespaced under {@linkcode foundry.applications.ui.Notifications}"
|
399
422
|
* (since v13 will be removed in v15)
|
400
423
|
*/
|
424
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
401
425
|
export import Notifications = foundry.applications.ui.Notifications;
|
402
426
|
|
403
427
|
/**
|
404
428
|
* @deprecated "You are accessing the global {@linkcode ActiveEffectConfig} which is now namespaced under {@linkcode foundry.applications.sheets.ActiveEffectConfig}"
|
405
429
|
* (since v13 will be removed in v15)
|
406
430
|
*/
|
431
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
407
432
|
export import ActiveEffectConfig = foundry.applications.sheets.ActiveEffectConfig;
|
408
433
|
|
409
434
|
/**
|
410
435
|
* @deprecated "You are accessing the global {@linkcode AdventureExporter} which is now namespaced under {@linkcode foundry.applications.sheets.AdventureExporter}"
|
411
436
|
* (since v13 will be removed in v15)
|
412
437
|
*/
|
438
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
413
439
|
export import AdventureExporter = foundry.applications.sheets.AdventureExporter;
|
414
440
|
|
415
441
|
/**
|
416
442
|
* @deprecated "You are accessing the global {@linkcode BaseSheet} which is now namespaced under {@linkcode foundry.applications.sheets.BaseSheet}"
|
417
443
|
* (since v13 will be removed in v15)
|
418
444
|
*/
|
445
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
419
446
|
export import BaseSheet = foundry.applications.sheets.BaseSheet;
|
420
447
|
|
421
448
|
/**
|
422
449
|
* @deprecated "You are accessing the global {@linkcode CardConfig} which is now namespaced under {@linkcode foundry.applications.sheets.CardConfig}"
|
423
450
|
* (since v13 will be removed in v15)
|
424
451
|
*/
|
452
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
425
453
|
export import CardConfig = foundry.applications.sheets.CardConfig;
|
426
454
|
|
427
455
|
/**
|
428
456
|
* @deprecated "You are accessing the global {@linkcode CardHand} which is now namespaced under {@linkcode foundry.applications.sheets.CardHandConfig}"
|
429
457
|
* (since v13 will be removed in v15)
|
430
458
|
*/
|
459
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
431
460
|
export import CardHand = foundry.applications.sheets.CardHandConfig;
|
432
461
|
|
433
462
|
/**
|
434
463
|
* @deprecated "You are accessing the global {@linkcode CardPile} which is now namespaced under {@linkcode foundry.applications.sheets.CardPileConfig}"
|
435
464
|
* (since v13 will be removed in v15)
|
436
465
|
*/
|
466
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
437
467
|
export import CardPile = foundry.applications.sheets.CardPileConfig;
|
438
468
|
|
439
469
|
/**
|
440
470
|
* @deprecated "You are accessing the global {@linkcode CardsConfig} which is now namespaced under {@linkcode foundry.applications.sheets.CardDeckConfig}"
|
441
471
|
* (since v13 will be removed in v15)
|
442
472
|
*/
|
473
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
443
474
|
export import CardsConfig = foundry.applications.sheets.CardDeckConfig;
|
444
475
|
|
445
476
|
/**
|
446
477
|
* @deprecated "You are accessing the global {@linkcode CombatantConfig} which is now namespaced under {@linkcode foundry.applications.sheets.CombatantConfig}"
|
447
478
|
* (since v13 will be removed in v15)
|
448
479
|
*/
|
480
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
449
481
|
export import CombatantConfig = foundry.applications.sheets.CombatantConfig;
|
450
482
|
|
451
483
|
/**
|
452
484
|
* @deprecated "You are accessing the global {@linkcode DrawingConfig} which is now namespaced under {@linkcode foundry.applications.sheets.DrawingConfig}"
|
453
485
|
* (since v13 will be removed in v15)
|
454
486
|
*/
|
487
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
455
488
|
export import DrawingConfig = foundry.applications.sheets.DrawingConfig;
|
456
489
|
|
457
490
|
/**
|
458
491
|
* @deprecated "You are accessing the global {@linkcode FolderConfig} which is now namespaced under {@linkcode foundry.applications.sheets.FolderConfig}"
|
459
492
|
* (since v13 will be removed in v15)
|
460
493
|
*/
|
494
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
461
495
|
export import FolderConfig = foundry.applications.sheets.FolderConfig;
|
462
496
|
|
463
497
|
/**
|
464
498
|
* @deprecated "You are accessing the global {@linkcode MeasuredTemplateConfig} which is now namespaced under {@linkcode foundry.applications.sheets.MeasuredTemplateConfig}"
|
465
499
|
* (since v13 will be removed in v15)
|
466
500
|
*/
|
501
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
467
502
|
export import MeasuredTemplateConfig = foundry.applications.sheets.MeasuredTemplateConfig;
|
468
503
|
|
469
504
|
/**
|
470
505
|
* @deprecated "You are accessing the global {@linkcode MacroConfig} which is now namespaced under {@linkcode foundry.applications.sheets.MacroConfig}"
|
471
506
|
* (since v13 will be removed in v15)
|
472
507
|
*/
|
508
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
473
509
|
export import MacroConfig = foundry.applications.sheets.MacroConfig;
|
474
510
|
|
475
511
|
/**
|
476
512
|
* @deprecated "You are accessing the global {@linkcode NoteConfig} which is now namespaced under {@linkcode foundry.applications.sheets.NoteConfig}"
|
477
513
|
* (since v13 will be removed in v15)
|
478
514
|
*/
|
515
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
479
516
|
export import NoteConfig = foundry.applications.sheets.NoteConfig;
|
480
517
|
|
481
518
|
/**
|
482
519
|
* @deprecated "You are accessing the global {@linkcode PlaylistConfig} which is now namespaced under {@linkcode foundry.applications.sheets.PlaylistConfig}"
|
483
520
|
* (since v13 will be removed in v15)
|
484
521
|
*/
|
522
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
485
523
|
export import PlaylistConfig = foundry.applications.sheets.PlaylistConfig;
|
486
524
|
|
487
525
|
/**
|
488
526
|
* @deprecated "You are accessing the global {@linkcode PlaylistSoundConfig} which is now namespaced under {@linkcode foundry.applications.sheets.PlaylistSoundConfig}"
|
489
527
|
* (since v13 will be removed in v15)
|
490
528
|
*/
|
529
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
491
530
|
export import PlaylistSoundConfig = foundry.applications.sheets.PlaylistSoundConfig;
|
492
531
|
|
493
532
|
/**
|
494
533
|
* @deprecated "You are accessing the global {@linkcode RollTableConfig} which is now namespaced under {@linkcode foundry.applications.sheets.RollTableSheet}"
|
495
534
|
* (since v13 will be removed in v15)
|
496
535
|
*/
|
536
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
497
537
|
export import RollTableConfig = foundry.applications.sheets.RollTableSheet;
|
498
538
|
|
499
539
|
/**
|
500
540
|
* @deprecated "You are accessing the global {@linkcode SceneConfig} which is now namespaced under {@linkcode foundry.applications.sheets.SceneConfig}"
|
501
541
|
* (since v13 will be removed in v15)
|
502
542
|
*/
|
543
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
503
544
|
export import SceneConfig = foundry.applications.sheets.SceneConfig;
|
504
545
|
|
505
546
|
/**
|
506
547
|
* @deprecated "You are accessing the global {@linkcode TileConfig} which is now namespaced under {@linkcode foundry.applications.sheets.TileConfig}"
|
507
548
|
* (since v13 will be removed in v15)
|
508
549
|
*/
|
550
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
509
551
|
export import TileConfig = foundry.applications.sheets.TileConfig;
|
510
552
|
|
511
553
|
/**
|
512
554
|
* @deprecated "You are accessing the global {@linkcode TokenConfig} which is now namespaced under {@linkcode foundry.applications.sheets.TokenConfig}"
|
513
555
|
* (since v13 will be removed in v15)
|
514
556
|
*/
|
557
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
515
558
|
export import TokenConfig = foundry.applications.sheets.TokenConfig;
|
516
559
|
|
517
560
|
/**
|
518
561
|
* @deprecated "You are accessing the global {@linkcode WallConfig} which is now namespaced under {@linkcode foundry.applications.sheets.WallConfig}"
|
519
562
|
* (since v13 will be removed in v15)
|
520
563
|
*/
|
564
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
521
565
|
export import WallConfig = foundry.applications.sheets.WallConfig;
|
522
566
|
|
523
567
|
/**
|
524
568
|
* @deprecated "You are accessing the global {@linkcode JournalImagePageSheet} which is now namespaced under {@linkcode foundry.applications.sheets.journal.JournalEntryPageImageSheet}"
|
525
569
|
* (since v13 will be removed in v15)
|
526
570
|
*/
|
571
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
527
572
|
export import JournalImagePageSheet = foundry.applications.sheets.journal.JournalEntryPageImageSheet;
|
528
573
|
|
529
574
|
/**
|
530
575
|
* @deprecated "You are accessing the global {@linkcode JournalPDFPageSheet} which is now namespaced under {@linkcode foundry.applications.sheets.journal.JournalEntryPagePDFSheet}"
|
531
576
|
* (since v13 will be removed in v15)
|
532
577
|
*/
|
578
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
533
579
|
export import JournalPDFPageSheet = foundry.applications.sheets.journal.JournalEntryPagePDFSheet;
|
534
580
|
|
535
581
|
/**
|
536
582
|
* @deprecated "You are accessing the global {@linkcode JournalVideoPageSheet} which is now namespaced under {@linkcode foundry.applications.sheets.journal.JournalEntryPageVideoSheet}"
|
537
583
|
* (since v13 will be removed in v15)
|
538
584
|
*/
|
585
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
539
586
|
export import JournalVideoPageSheet = foundry.applications.sheets.journal.JournalEntryPageVideoSheet;
|
540
587
|
|
541
588
|
/**
|
542
589
|
* @deprecated "You are accessing the global {@linkcode MarkdownJournalPageSheet} which is now namespaced under {@linkcode foundry.applications.sheets.journal.JournalEntryPageMarkdownSheet}"
|
543
590
|
* (since v13 will be removed in v15)
|
544
591
|
*/
|
592
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
545
593
|
export import MarkdownJournalPageSheet = foundry.applications.sheets.journal.JournalEntryPageMarkdownSheet;
|
546
594
|
|
547
595
|
/**
|
548
596
|
* @deprecated "You are accessing the global {@linkcode Sidebar} which is now namespaced under {@linkcode foundry.applications.sidebar.Sidebar}"
|
549
597
|
* (since v13 will be removed in v15)
|
550
598
|
*/
|
599
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
551
600
|
export import Sidebar = foundry.applications.sidebar.Sidebar;
|
552
601
|
|
553
602
|
/**
|
554
603
|
* @deprecated "You are accessing the global {@linkcode ActorDirectory} which is now namespaced under {@linkcode foundry.applications.sidebar.tabs.ActorDirectory}"
|
555
604
|
* (since v13 will be removed in v15)
|
556
605
|
*/
|
606
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
557
607
|
export import ActorDirectory = foundry.applications.sidebar.tabs.ActorDirectory;
|
558
608
|
|
559
609
|
/**
|
560
610
|
* @deprecated "You are accessing the global {@linkcode CardsDirectory} which is now namespaced under {@linkcode foundry.applications.sidebar.tabs.CardsDirectory}"
|
561
611
|
* (since v13 will be removed in v15)
|
562
612
|
*/
|
613
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
563
614
|
export import CardsDirectory = foundry.applications.sidebar.tabs.CardsDirectory;
|
564
615
|
|
565
616
|
/**
|
566
617
|
* @deprecated "You are accessing the global {@linkcode ChatLog} which is now namespaced under {@linkcode foundry.applications.sidebar.tabs.ChatLog}"
|
567
618
|
* (since v13 will be removed in v15)
|
568
619
|
*/
|
620
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
569
621
|
export import ChatLog = foundry.applications.sidebar.tabs.ChatLog;
|
570
622
|
|
571
623
|
/**
|
572
624
|
* @deprecated "You are accessing the global {@linkcode CombatTracker} which is now namespaced under {@linkcode foundry.applications.sidebar.tabs.CombatTracker}"
|
573
625
|
* (since v13 will be removed in v15)
|
574
626
|
*/
|
627
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
575
628
|
export import CombatTracker = foundry.applications.sidebar.tabs.CombatTracker;
|
576
629
|
|
577
630
|
/**
|
578
631
|
* @deprecated "You are accessing the global {@linkcode CompendiumDirectory} which is now namespaced under {@linkcode foundry.applications.sidebar.tabs.CompendiumDirectory}"
|
579
632
|
* (since v13 will be removed in v15)
|
580
633
|
*/
|
634
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
581
635
|
export import CompendiumDirectory = foundry.applications.sidebar.tabs.CompendiumDirectory;
|
582
636
|
|
583
637
|
/**
|
584
638
|
* @deprecated "You are accessing the global {@linkcode ItemDirectory} which is now namespaced under {@linkcode foundry.applications.sidebar.tabs.ItemDirectory}"
|
585
639
|
* (since v13 will be removed in v15)
|
586
640
|
*/
|
641
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
587
642
|
export import ItemDirectory = foundry.applications.sidebar.tabs.ItemDirectory;
|
588
643
|
|
589
644
|
/**
|
590
645
|
* @deprecated "You are accessing the global {@linkcode JournalDirectory} which is now namespaced under {@linkcode foundry.applications.sidebar.tabs.JournalDirectory}"
|
591
646
|
* (since v13 will be removed in v15)
|
592
647
|
*/
|
648
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
593
649
|
export import JournalDirectory = foundry.applications.sidebar.tabs.JournalDirectory;
|
594
650
|
|
595
651
|
/**
|
596
652
|
* @deprecated "You are accessing the global {@linkcode MacroDirectory} which is now namespaced under {@linkcode foundry.applications.sidebar.tabs.MacroDirectory}"
|
597
653
|
* (since v13 will be removed in v15)
|
598
654
|
*/
|
655
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
599
656
|
export import MacroDirectory = foundry.applications.sidebar.tabs.MacroDirectory;
|
600
657
|
|
601
658
|
/**
|
602
659
|
* @deprecated "You are accessing the global {@linkcode PlaylistDirectory} which is now namespaced under {@linkcode foundry.applications.sidebar.tabs.PlaylistDirectory}"
|
603
660
|
* (since v13 will be removed in v15)
|
604
661
|
*/
|
662
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
605
663
|
export import PlaylistDirectory = foundry.applications.sidebar.tabs.PlaylistDirectory;
|
606
664
|
|
607
665
|
/**
|
608
666
|
* @deprecated "You are accessing the global {@linkcode RollTableDirectory} which is now namespaced under {@linkcode foundry.applications.sidebar.tabs.RollTableDirectory}"
|
609
667
|
* (since v13 will be removed in v15)
|
610
668
|
*/
|
669
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
611
670
|
export import RollTableDirectory = foundry.applications.sidebar.tabs.RollTableDirectory;
|
612
671
|
|
613
672
|
/**
|
614
673
|
* @deprecated "You are accessing the global {@linkcode SceneDirectory} which is now namespaced under {@linkcode foundry.applications.sidebar.tabs.SceneDirectory}"
|
615
674
|
* (since v13 will be removed in v15)
|
616
675
|
*/
|
676
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
617
677
|
export import SceneDirectory = foundry.applications.sidebar.tabs.SceneDirectory;
|
618
678
|
|
619
679
|
/**
|
620
680
|
* @deprecated "You are accessing the global {@linkcode Compendium} which is now namespaced under {@linkcode foundry.applications.sidebar.apps.Compendium}"
|
621
681
|
* (since v13 will be removed in v15)
|
622
682
|
*/
|
683
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
623
684
|
export import Compendium = foundry.applications.sidebar.apps.Compendium;
|
624
685
|
|
625
686
|
/**
|
626
687
|
* @deprecated "You are accessing the global {@linkcode InvitationLinks} which is now namespaced under {@linkcode foundry.applications.sidebar.apps.InvitationLinks}"
|
627
688
|
* (since v13 will be removed in v15)
|
628
689
|
*/
|
690
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
629
691
|
export import InvitationLinks = foundry.applications.sidebar.apps.InvitationLinks;
|
630
692
|
|
631
693
|
/**
|
632
694
|
* @deprecated "You are accessing the global {@linkcode KeybindingsConfig} which is now namespaced under {@linkcode foundry.applications.sidebar.apps.ControlsConfig}"
|
633
695
|
* (since v13 will be removed in v15)
|
634
696
|
*/
|
697
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
635
698
|
export import KeybindingsConfig = foundry.applications.sidebar.apps.ControlsConfig;
|
636
699
|
|
637
700
|
/**
|
638
701
|
* @deprecated "You are accessing the global {@linkcode Settings} which is now namespaced under {@linkcode foundry.applications.sidebar.tabs.Settings}"
|
639
702
|
* (since v13 will be removed in v15)
|
640
703
|
*/
|
704
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
641
705
|
export import Settings = foundry.applications.sidebar.tabs.Settings;
|
642
706
|
|
643
707
|
/**
|
644
708
|
* @deprecated "You are accessing the global {@linkcode SupportDetails} which is now namespaced under {@linkcode foundry.applications.sidebar.apps.SupportDetails}"
|
645
709
|
* (since v13 will be removed in v15)
|
646
710
|
*/
|
711
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
647
712
|
export import SupportDetails = foundry.applications.sidebar.apps.SupportDetails;
|
648
713
|
|
649
714
|
/**
|
650
715
|
* @deprecated "You are accessing the global {@linkcode ModuleManagement} which is now namespaced under {@linkcode foundry.applications.sidebar.apps.ModuleManagement}"
|
651
716
|
* (since v13 will be removed in v15)
|
652
717
|
*/
|
718
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
653
719
|
export import ModuleManagement = foundry.applications.sidebar.apps.ModuleManagement;
|
654
720
|
|
655
721
|
/**
|
656
722
|
* @deprecated "You are accessing the global {@linkcode ToursManagement} which is now namespaced under {@linkcode foundry.applications.sidebar.apps.ToursManagement}"
|
657
723
|
* (since v13 will be removed in v15)
|
658
724
|
*/
|
725
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
659
726
|
export import ToursManagement = foundry.applications.sidebar.apps.ToursManagement;
|
660
727
|
|
661
728
|
/**
|
662
729
|
* @deprecated "You are accessing the global {@linkcode BasePlaceableHUD} which is now namespaced under {@linkcode foundry.applications.hud.BasePlaceableHUD}"
|
663
730
|
* (since v13 will be removed in v15)
|
664
731
|
*/
|
732
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
665
733
|
export import BasePlaceableHUD = foundry.applications.hud.BasePlaceableHUD;
|
666
734
|
|
667
735
|
/**
|
668
736
|
* @deprecated "You are accessing the global {@linkcode DrawingHUD} which is now namespaced under {@linkcode foundry.applications.hud.DrawingHUD}"
|
669
737
|
* (since v13 will be removed in v15)
|
670
738
|
*/
|
739
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
671
740
|
export import DrawingHUD = foundry.applications.hud.DrawingHUD;
|
672
741
|
|
673
742
|
/**
|
674
743
|
* @deprecated "You are accessing the global {@linkcode TileHUD} which is now namespaced under {@linkcode foundry.applications.hud.TileHUD}"
|
675
744
|
* (since v13 will be removed in v15)
|
676
745
|
*/
|
746
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
677
747
|
export import TileHUD = foundry.applications.hud.TileHUD;
|
678
748
|
|
679
749
|
/**
|
680
750
|
* @deprecated "You are accessing the global {@linkcode TokenHUD} which is now namespaced under {@linkcode foundry.applications.hud.TokenHUD}"
|
681
751
|
* (since v13 will be removed in v15)
|
682
752
|
*/
|
753
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
683
754
|
export import TokenHUD = foundry.applications.hud.TokenHUD;
|
684
755
|
|
685
756
|
/**
|
686
757
|
* @deprecated "You are accessing the global {@linkcode CameraViews} which is now namespaced under {@linkcode foundry.applications.apps.av.CameraViews}"
|
687
758
|
* (since v13 will be removed in v15)
|
688
759
|
*/
|
760
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
689
761
|
export import CameraViews = foundry.applications.apps.av.CameraViews;
|
690
762
|
|
691
763
|
/**
|
692
764
|
* @deprecated "You are accessing the global {@linkcode CameraPopoutAppWrapper} which is now namespaced under {@linkcode foundry.applications.apps.av.CameraPopout}"
|
693
765
|
* (since v13 will be removed in v15)
|
694
766
|
*/
|
767
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
695
768
|
export import CameraPopoutAppWrapper = foundry.applications.apps.av.CameraPopout;
|
696
769
|
|
697
770
|
/**
|
698
771
|
* @deprecated "You are accessing the global {@linkcode AVClient} which is now namespaced under {@linkcode foundry.av.AVClient}"
|
699
772
|
* (since v13 will be removed in v15)
|
700
773
|
*/
|
774
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
701
775
|
export import AVClient = foundry.av.AVClient;
|
702
776
|
|
703
777
|
/**
|
704
778
|
* @deprecated "You are accessing the global {@linkcode AVMaster} which is now namespaced under {@linkcode foundry.av.AVMaster}"
|
705
779
|
* (since v13 will be removed in v15)
|
706
780
|
*/
|
781
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
707
782
|
export import AVMaster = foundry.av.AVMaster;
|
708
783
|
|
709
784
|
/**
|
710
785
|
* @deprecated "You are accessing the global {@linkcode AVSettings} which is now namespaced under {@linkcode foundry.av.AVSettings}"
|
711
786
|
* (since v13 will be removed in v15)
|
712
787
|
*/
|
788
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
713
789
|
export import AVSettings = foundry.av.AVSettings;
|
714
790
|
|
715
791
|
/**
|
716
792
|
* @deprecated "You are accessing the global {@linkcode SimplePeerAVClient} which is now namespaced under {@linkcode foundry.av.clients.SimplePeerAVClient}"
|
717
793
|
* (since v13 will be removed in v15)
|
718
794
|
*/
|
795
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
719
796
|
export import SimplePeerAVClient = foundry.av.clients.SimplePeerAVClient;
|
720
797
|
|
721
798
|
/**
|
722
799
|
* @deprecated "You are accessing the global {@linkcode AVConfig} which is now namespaced under {@linkcode foundry.applications.settings.menus.AVConfig}"
|
723
800
|
* (since v13 will be removed in v15)
|
724
801
|
*/
|
802
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
725
803
|
export import AVConfig = foundry.applications.settings.menus.AVConfig;
|
726
804
|
|
727
805
|
/**
|
728
806
|
* @deprecated "You are accessing the global {@linkcode DefaultSheetsConfig} which is now namespaced under {@linkcode foundry.applications.settings.menus.DefaultSheetsConfig}"
|
729
807
|
* (since v13 will be removed in v15)
|
730
808
|
*/
|
809
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
731
810
|
export import DefaultSheetsConfig = foundry.applications.settings.menus.DefaultSheetsConfig;
|
732
811
|
|
733
812
|
/**
|
734
813
|
* @deprecated "You are accessing the global {@linkcode DiceConfig} which is now namespaced under {@linkcode foundry.applications.settings.menus.DiceConfig}"
|
735
814
|
* (since v13 will be removed in v15)
|
736
815
|
*/
|
816
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
737
817
|
export import DiceConfig = foundry.applications.settings.menus.DiceConfig;
|
738
818
|
|
739
819
|
/**
|
740
820
|
* @deprecated "You are accessing the global {@linkcode FontConfig} which is now namespaced under {@linkcode foundry.applications.settings.menus.FontConfig}"
|
741
821
|
* (since v13 will be removed in v15)
|
742
822
|
*/
|
823
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
743
824
|
export import FontConfig = foundry.applications.settings.menus.FontConfig;
|
744
825
|
|
745
826
|
/**
|
746
827
|
* @deprecated "You are accessing the global {@linkcode SettingsConfig} which is now namespaced under {@linkcode foundry.applications.settings.SettingsConfig}"
|
747
828
|
* (since v13 will be removed in v15)
|
748
829
|
*/
|
830
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
749
831
|
export import SettingsConfig = foundry.applications.settings.SettingsConfig;
|
750
832
|
|
751
833
|
/**
|
752
834
|
* @deprecated "You are accessing the global {@linkcode DependencyResolution} which is now namespaced under {@linkcode foundry.applications.settings.DependencyResolution}"
|
753
835
|
* (since v13 will be removed in v15)
|
754
836
|
*/
|
837
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
755
838
|
export import DependencyResolution = foundry.applications.settings.DependencyResolution;
|
756
839
|
|
757
840
|
/**
|
@@ -759,6 +842,7 @@ declare global {
|
|
759
842
|
* (since v13 will be removed in v15)
|
760
843
|
* @privateRemarks TODO: This should return the configured class
|
761
844
|
*/
|
845
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
762
846
|
export import ContextMenu = foundry.applications.ux.ContextMenu;
|
763
847
|
|
764
848
|
/**
|
@@ -766,6 +850,7 @@ declare global {
|
|
766
850
|
* (since v13 will be removed in v15)
|
767
851
|
* @privateRemarks TODO: This should return the configured class
|
768
852
|
*/
|
853
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
769
854
|
export import DragDrop = foundry.applications.ux.DragDrop;
|
770
855
|
|
771
856
|
/**
|
@@ -773,36 +858,42 @@ declare global {
|
|
773
858
|
* (since v13 will be removed in v15)
|
774
859
|
* @privateRemarks TODO: This should return the configured class
|
775
860
|
*/
|
861
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
776
862
|
export import Draggable = foundry.applications.ux.Draggable;
|
777
863
|
|
778
864
|
/**
|
779
865
|
* @deprecated "You are accessing the global {@linkcode FormDataExtended} which is now namespaced under {@linkcode foundry.applications.ux.FormDataExtended}"
|
780
866
|
* (since v13 will be removed in v15)
|
781
867
|
*/
|
868
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
782
869
|
export import FormDataExtended = foundry.applications.ux.FormDataExtended;
|
783
870
|
|
784
871
|
/**
|
785
872
|
* @deprecated "You are accessing the global {@linkcode HTMLSecret} which is now namespaced under {@linkcode foundry.applications.ux.HTMLSecret}"
|
786
873
|
* (since v13 will be removed in v15)
|
787
874
|
*/
|
875
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
788
876
|
export import HTMLSecret = foundry.applications.ux.HTMLSecret;
|
789
877
|
|
790
878
|
/**
|
791
879
|
* @deprecated "You are accessing the global {@linkcode ProseMirrorEditor} which is now namespaced under {@linkcode foundry.applications.ux.ProseMirrorEditor}"
|
792
880
|
* (since v13 will be removed in v15)
|
793
881
|
*/
|
882
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
794
883
|
export import ProseMirrorEditor = foundry.applications.ux.ProseMirrorEditor;
|
795
884
|
|
796
885
|
/**
|
797
886
|
* @deprecated "You are accessing the global {@linkcode SearchFilter} which is now namespaced under {@linkcode foundry.applications.ux.SearchFilter}"
|
798
887
|
* (since v13 will be removed in v15)
|
799
888
|
*/
|
889
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
800
890
|
export import SearchFilter = foundry.applications.ux.SearchFilter;
|
801
891
|
|
802
892
|
/**
|
803
893
|
* @deprecated "You are accessing the global {@linkcode Tabs} which is now namespaced under {@linkcode foundry.applications.ux.Tabs}"
|
804
894
|
* (since v13 will be removed in v15)
|
805
895
|
*/
|
896
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
806
897
|
export import Tabs = foundry.applications.ux.Tabs;
|
807
898
|
|
808
899
|
/**
|
@@ -810,1464 +901,1708 @@ declare global {
|
|
810
901
|
* (since v13 will be removed in v15)
|
811
902
|
* @privateRemarks TODO: This should return the configured class
|
812
903
|
*/
|
904
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
813
905
|
export import TextEditor = foundry.applications.ux.TextEditor;
|
814
906
|
|
815
907
|
/**
|
816
908
|
* @deprecated "You are accessing the global {@linkcode ActorSheet} which is now namespaced under {@linkcode foundry.appv1.sheets.ActorSheet}"
|
817
909
|
* (since v13 will be removed in v15)
|
818
910
|
*/
|
911
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
819
912
|
export import ActorSheet = foundry.appv1.sheets.ActorSheet;
|
820
913
|
|
821
914
|
/**
|
822
915
|
* @deprecated "You are accessing the global {@linkcode AdventureImporter} which is now namespaced under {@linkcode foundry.appv1.sheets.AdventureImporter}"
|
823
916
|
* (since v13 will be removed in v15)
|
824
917
|
*/
|
918
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
825
919
|
export import AdventureImporter = foundry.appv1.sheets.AdventureImporter;
|
826
920
|
|
827
921
|
/**
|
828
922
|
* @deprecated "You are accessing the global {@linkcode ItemSheet} which is now namespaced under {@linkcode foundry.appv1.sheets.ItemSheet}"
|
829
923
|
* (since v13 will be removed in v15)
|
830
924
|
*/
|
925
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
831
926
|
export import ItemSheet = foundry.appv1.sheets.ItemSheet;
|
832
927
|
|
833
928
|
/**
|
834
929
|
* @deprecated "You are accessing the global {@linkcode JournalSheet} which is now namespaced under {@linkcode foundry.appv1.sheets.JournalSheet}"
|
835
930
|
* (since v13 will be removed in v15)
|
836
931
|
*/
|
932
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
837
933
|
export import JournalSheet = foundry.appv1.sheets.JournalSheet;
|
838
934
|
|
839
935
|
/**
|
840
936
|
* @deprecated "You are accessing the global {@linkcode JournalPageSheet} which is now namespaced under {@linkcode foundry.appv1.sheets.JournalPageSheet}"
|
841
937
|
* (since v13 will be removed in v15)
|
842
938
|
*/
|
939
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
843
940
|
export import JournalPageSheet = foundry.appv1.sheets.JournalPageSheet;
|
844
941
|
|
845
942
|
/**
|
846
943
|
* @deprecated "You are accessing the global {@linkcode JournalTextPageSheet} which is now namespaced under {@linkcode foundry.appv1.sheets.JournalTextPageSheet}"
|
847
944
|
* (since v13 will be removed in v15)
|
848
945
|
*/
|
946
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
849
947
|
export import JournalTextPageSheet = foundry.appv1.sheets.JournalTextPageSheet;
|
850
948
|
|
851
949
|
/**
|
852
950
|
* @deprecated "You are accessing the global {@linkcode JournalTextTinyMCESheet} which is now namespaced under {@linkcode foundry.appv1.sheets.JournalTextTinyMCESheet}"
|
853
951
|
* (since v13 will be removed in v15)
|
854
952
|
*/
|
953
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
855
954
|
export import JournalTextTinyMCESheet = foundry.appv1.sheets.JournalTextTinyMCESheet;
|
856
955
|
|
857
956
|
/**
|
858
957
|
* @deprecated "You are accessing the global {@linkcode Canvas} which is now namespaced under {@linkcode foundry.canvas.Canvas}"
|
859
958
|
* (since v13 will be removed in v15)
|
860
959
|
*/
|
960
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
861
961
|
export import Canvas = foundry.canvas.Canvas;
|
862
962
|
|
863
963
|
/**
|
864
964
|
* @deprecated "You are accessing the global {@linkcode SceneManager} which is now namespaced under {@linkcode foundry.canvas.SceneManager}"
|
865
965
|
* (since v13 will be removed in v15)
|
866
966
|
*/
|
967
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
867
968
|
export import SceneManager = foundry.canvas.SceneManager;
|
868
969
|
|
869
970
|
/**
|
870
971
|
* @deprecated "You are accessing the global {@linkcode FramebufferSnapshot} which is now namespaced under {@linkcode foundry.canvas.FramebufferSnapshot}"
|
871
972
|
* (since v13 will be removed in v15)
|
872
973
|
*/
|
974
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
873
975
|
export import FramebufferSnapshot = foundry.canvas.FramebufferSnapshot;
|
874
976
|
|
875
977
|
/**
|
876
978
|
* @deprecated "You are accessing the global {@linkcode TextureExtractor} which is now namespaced under {@linkcode foundry.canvas.TextureExtractor}"
|
877
979
|
* (since v13 will be removed in v15)
|
878
980
|
*/
|
981
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
879
982
|
export import TextureExtractor = foundry.canvas.TextureExtractor;
|
880
983
|
|
881
984
|
/**
|
882
985
|
* @deprecated "You are accessing the global {@linkcode TextureLoader} which is now namespaced under {@linkcode foundry.canvas.TextureLoader}"
|
883
986
|
* (since v13 will be removed in v15)
|
884
987
|
*/
|
988
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
885
989
|
export import TextureLoader = foundry.canvas.TextureLoader;
|
886
990
|
|
887
991
|
/**
|
888
992
|
* @deprecated "You are accessing the global {@linkcode getTexture} which is now namespaced under {@linkcode foundry.canvas.getTexture}"
|
889
993
|
* (since v13 will be removed in v15)
|
890
994
|
*/
|
995
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
891
996
|
export import getTexture = foundry.canvas.getTexture;
|
892
997
|
|
893
998
|
/**
|
894
999
|
* @deprecated "You are accessing the global {@linkcode loadTexture} which is now namespaced under {@linkcode foundry.canvas.loadTexture}"
|
895
1000
|
* (since v13 will be removed in v15)
|
896
1001
|
*/
|
1002
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
897
1003
|
export import loadTexture = foundry.canvas.loadTexture;
|
898
1004
|
|
899
1005
|
/**
|
900
1006
|
* @deprecated "You are accessing the global {@linkcode srcExists} which is now namespaced under {@linkcode foundry.canvas.srcExists}"
|
901
1007
|
* (since v13 will be removed in v15)
|
902
1008
|
*/
|
1009
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
903
1010
|
export import srcExists = foundry.canvas.srcExists;
|
904
1011
|
|
905
1012
|
/**
|
906
1013
|
* @deprecated "You are accessing the global {@linkcode CachedContainer} which is now namespaced under {@linkcode foundry.canvas.containers.CachedContainer}"
|
907
1014
|
* (since v13 will be removed in v15)
|
908
1015
|
*/
|
1016
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
909
1017
|
export import CachedContainer = foundry.canvas.containers.CachedContainer;
|
910
1018
|
|
911
1019
|
/**
|
912
1020
|
* @deprecated "You are accessing the global {@linkcode UnboundContainer} which is now namespaced under {@linkcode foundry.canvas.containers.UnboundContainer}"
|
913
1021
|
* (since v13 will be removed in v15)
|
914
1022
|
*/
|
1023
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
915
1024
|
export import UnboundContainer = foundry.canvas.containers.UnboundContainer;
|
916
1025
|
|
917
1026
|
/**
|
918
1027
|
* @deprecated "You are accessing the global {@linkcode FullCanvasObjectMixin} which is now namespaced under {@linkcode foundry.canvas.containers.FullCanvasObjectMixin}"
|
919
1028
|
* (since v13 will be removed in v15)
|
920
1029
|
*/
|
1030
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
921
1031
|
export import FullCanvasObjectMixin = foundry.canvas.containers.FullCanvasObjectMixin;
|
922
1032
|
|
923
1033
|
/**
|
924
1034
|
* @deprecated "You are accessing the global {@linkcode PointSourceMesh} which is now namespaced under {@linkcode foundry.canvas.containers.PointSourceMesh}"
|
925
1035
|
* (since v13 will be removed in v15)
|
926
1036
|
*/
|
1037
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
927
1038
|
export import PointSourceMesh = foundry.canvas.containers.PointSourceMesh;
|
928
1039
|
|
929
1040
|
/**
|
930
1041
|
* @deprecated "You are accessing the global {@linkcode QuadMesh} which is now namespaced under {@linkcode foundry.canvas.containers.QuadMesh}"
|
931
1042
|
* (since v13 will be removed in v15)
|
932
1043
|
*/
|
1044
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
933
1045
|
export import QuadMesh = foundry.canvas.containers.QuadMesh;
|
934
1046
|
|
935
1047
|
/**
|
936
1048
|
* @deprecated "You are accessing the global {@linkcode SpriteMesh} which is now namespaced under {@linkcode foundry.canvas.containers.SpriteMesh}"
|
937
1049
|
* (since v13 will be removed in v15)
|
938
1050
|
*/
|
1051
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
939
1052
|
export import SpriteMesh = foundry.canvas.containers.SpriteMesh;
|
940
1053
|
|
941
1054
|
/**
|
942
1055
|
* @deprecated "You are accessing the global {@linkcode ControlIcon} which is now namespaced under {@linkcode foundry.canvas.containers.ControlIcon}"
|
943
1056
|
* (since v13 will be removed in v15)
|
944
1057
|
*/
|
1058
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
945
1059
|
export import ControlIcon = foundry.canvas.containers.ControlIcon;
|
946
1060
|
|
947
1061
|
/**
|
948
1062
|
* @deprecated "You are accessing the global {@linkcode ResizeHandle} which is now namespaced under {@linkcode foundry.canvas.containers.ResizeHandle}"
|
949
1063
|
* (since v13 will be removed in v15)
|
950
1064
|
*/
|
1065
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
951
1066
|
export import ResizeHandle = foundry.canvas.containers.ResizeHandle;
|
952
1067
|
|
953
1068
|
/**
|
954
1069
|
* @deprecated "You are accessing the global {@linkcode PreciseText} which is now namespaced under {@linkcode foundry.canvas.containers.PreciseText}"
|
955
1070
|
* (since v13 will be removed in v15)
|
956
1071
|
*/
|
1072
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
957
1073
|
export import PreciseText = foundry.canvas.containers.PreciseText;
|
958
1074
|
|
959
1075
|
/**
|
960
1076
|
* @deprecated "You are accessing the global {@linkcode GridMesh} which is now namespaced under {@linkcode foundry.canvas.containers.GridMesh}"
|
961
1077
|
* (since v13 will be removed in v15)
|
962
1078
|
*/
|
1079
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
963
1080
|
export import GridMesh = foundry.canvas.containers.GridMesh;
|
964
1081
|
|
965
1082
|
/**
|
966
1083
|
* @deprecated "You are accessing the global {@linkcode GridHighlight} which is now namespaced under {@linkcode foundry.canvas.containers.GridHighlight}"
|
967
1084
|
* (since v13 will be removed in v15)
|
968
1085
|
*/
|
1086
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
969
1087
|
export import GridHighlight = foundry.canvas.containers.GridHighlight;
|
970
1088
|
|
971
1089
|
/**
|
972
1090
|
* @deprecated "You are accessing the global {@linkcode Cursor} which is now namespaced under {@linkcode foundry.canvas.containers.Cursor}"
|
973
1091
|
* (since v13 will be removed in v15)
|
974
1092
|
*/
|
1093
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
975
1094
|
export import Cursor = foundry.canvas.containers.Cursor;
|
976
1095
|
|
977
1096
|
/**
|
978
1097
|
* @deprecated "You are accessing the global {@linkcode DoorControl} which is now namespaced under {@linkcode foundry.canvas.containers.DoorControl}"
|
979
1098
|
* (since v13 will be removed in v15)
|
980
1099
|
*/
|
1100
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
981
1101
|
export import DoorControl = foundry.canvas.containers.DoorControl;
|
982
1102
|
|
983
1103
|
/**
|
984
1104
|
* @deprecated "You are accessing the global {@linkcode ParticleEffect} which is now namespaced under {@linkcode foundry.canvas.containers.ParticleEffect}"
|
985
1105
|
* (since v13 will be removed in v15)
|
986
1106
|
*/
|
1107
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
987
1108
|
export import ParticleEffect = foundry.canvas.containers.ParticleEffect;
|
988
1109
|
|
989
1110
|
/**
|
990
1111
|
* @deprecated "You are accessing the global {@linkcode AutumnLeavesWeatherEffect} which is now namespaced under {@linkcode foundry.canvas.containers.AutumnLeavesWeatherEffect}"
|
991
1112
|
* (since v13 will be removed in v15)
|
992
1113
|
*/
|
1114
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
993
1115
|
export import AutumnLeavesWeatherEffect = foundry.canvas.containers.AutumnLeavesWeatherEffect;
|
994
1116
|
|
995
1117
|
/**
|
996
1118
|
* @deprecated "You are accessing the global {@linkcode CanvasGroupMixin} which is now namespaced under {@linkcode foundry.canvas.groups.CanvasGroupMixin}"
|
997
1119
|
* (since v13 will be removed in v15)
|
998
1120
|
*/
|
1121
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
999
1122
|
export import CanvasGroupMixin = foundry.canvas.groups.CanvasGroupMixin;
|
1000
1123
|
|
1001
1124
|
/**
|
1002
1125
|
* @deprecated "You are accessing the global {@linkcode EffectsCanvasGroup} which is now namespaced under {@linkcode foundry.canvas.groups.EffectsCanvasGroup}"
|
1003
1126
|
* (since v13 will be removed in v15)
|
1004
1127
|
*/
|
1128
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1005
1129
|
export import EffectsCanvasGroup = foundry.canvas.groups.EffectsCanvasGroup;
|
1006
1130
|
|
1007
1131
|
/**
|
1008
1132
|
* @deprecated "You are accessing the global {@linkcode EnvironmentCanvasGroup} which is now namespaced under {@linkcode foundry.canvas.groups.EnvironmentCanvasGroup}"
|
1009
1133
|
* (since v13 will be removed in v15)
|
1010
1134
|
*/
|
1135
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1011
1136
|
export import EnvironmentCanvasGroup = foundry.canvas.groups.EnvironmentCanvasGroup;
|
1012
1137
|
|
1013
1138
|
/**
|
1014
1139
|
* @deprecated "You are accessing the global {@linkcode HiddenCanvasGroup} which is now namespaced under {@linkcode foundry.canvas.groups.HiddenCanvasGroup}"
|
1015
1140
|
* (since v13 will be removed in v15)
|
1016
1141
|
*/
|
1142
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1017
1143
|
export import HiddenCanvasGroup = foundry.canvas.groups.HiddenCanvasGroup;
|
1018
1144
|
|
1019
1145
|
/**
|
1020
1146
|
* @deprecated "You are accessing the global {@linkcode InterfaceCanvasGroup} which is now namespaced under {@linkcode foundry.canvas.groups.InterfaceCanvasGroup}"
|
1021
1147
|
* (since v13 will be removed in v15)
|
1022
1148
|
*/
|
1149
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1023
1150
|
export import InterfaceCanvasGroup = foundry.canvas.groups.InterfaceCanvasGroup;
|
1024
1151
|
|
1025
1152
|
/**
|
1026
1153
|
* @deprecated "You are accessing the global {@linkcode OverlayCanvasGroup} which is now namespaced under {@linkcode foundry.canvas.groups.OverlayCanvasGroup}"
|
1027
1154
|
* (since v13 will be removed in v15)
|
1028
1155
|
*/
|
1156
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1029
1157
|
export import OverlayCanvasGroup = foundry.canvas.groups.OverlayCanvasGroup;
|
1030
1158
|
|
1031
1159
|
/**
|
1032
1160
|
* @deprecated "You are accessing the global {@linkcode PrimaryCanvasGroup} which is now namespaced under {@linkcode foundry.canvas.groups.PrimaryCanvasGroup}"
|
1033
1161
|
* (since v13 will be removed in v15)
|
1034
1162
|
*/
|
1163
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1035
1164
|
export import PrimaryCanvasGroup = foundry.canvas.groups.PrimaryCanvasGroup;
|
1036
1165
|
|
1037
1166
|
/**
|
1038
1167
|
* @deprecated "You are accessing the global {@linkcode RenderedCanvasGroup} which is now namespaced under {@linkcode foundry.canvas.groups.RenderedCanvasGroup}"
|
1039
1168
|
* (since v13 will be removed in v15)
|
1040
1169
|
*/
|
1170
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1041
1171
|
export import RenderedCanvasGroup = foundry.canvas.groups.RenderedCanvasGroup;
|
1042
1172
|
|
1043
1173
|
/**
|
1044
1174
|
* @deprecated "You are accessing the global {@linkcode CanvasVisibility} which is now namespaced under {@linkcode foundry.canvas.groups.CanvasVisibility}"
|
1045
1175
|
* (since v13 will be removed in v15)
|
1046
1176
|
*/
|
1177
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1047
1178
|
export import CanvasVisibility = foundry.canvas.groups.CanvasVisibility;
|
1048
1179
|
|
1049
1180
|
/**
|
1050
1181
|
* @deprecated "You are accessing the global {@linkcode CanvasLayer} which is now namespaced under {@linkcode foundry.canvas.layers.CanvasLayer}"
|
1051
1182
|
* (since v13 will be removed in v15)
|
1052
1183
|
*/
|
1184
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1053
1185
|
export import CanvasLayer = foundry.canvas.layers.CanvasLayer;
|
1054
1186
|
|
1055
1187
|
/**
|
1056
1188
|
* @deprecated "You are accessing the global {@linkcode InteractionLayer} which is now namespaced under {@linkcode foundry.canvas.layers.InteractionLayer}"
|
1057
1189
|
* (since v13 will be removed in v15)
|
1058
1190
|
*/
|
1191
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1059
1192
|
export import InteractionLayer = foundry.canvas.layers.InteractionLayer;
|
1060
1193
|
|
1061
1194
|
/**
|
1062
1195
|
* @deprecated "You are accessing the global {@linkcode PlaceablesLayer} which is now namespaced under {@linkcode foundry.canvas.layers.PlaceablesLayer}"
|
1063
1196
|
* (since v13 will be removed in v15)
|
1064
1197
|
*/
|
1198
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1065
1199
|
export import PlaceablesLayer = foundry.canvas.layers.PlaceablesLayer;
|
1066
1200
|
|
1067
1201
|
/**
|
1068
1202
|
* @deprecated "You are accessing the global {@linkcode ControlsLayer} which is now namespaced under {@linkcode foundry.canvas.layers.ControlsLayer}"
|
1069
1203
|
* (since v13 will be removed in v15)
|
1070
1204
|
*/
|
1205
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1071
1206
|
export import ControlsLayer = foundry.canvas.layers.ControlsLayer;
|
1072
1207
|
|
1073
1208
|
/**
|
1074
1209
|
* @deprecated "You are accessing the global {@linkcode CanvasBackgroundAlterationEffects} which is now namespaced under {@linkcode foundry.canvas.layers.CanvasBackgroundAlterationEffects}"
|
1075
1210
|
* (since v13 will be removed in v15)
|
1076
1211
|
*/
|
1212
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1077
1213
|
export import CanvasBackgroundAlterationEffects = foundry.canvas.layers.CanvasBackgroundAlterationEffects;
|
1078
1214
|
|
1079
1215
|
/**
|
1080
1216
|
* @deprecated "You are accessing the global {@linkcode CanvasColorationEffects} which is now namespaced under {@linkcode foundry.canvas.layers.CanvasColorationEffects}"
|
1081
1217
|
* (since v13 will be removed in v15)
|
1082
1218
|
*/
|
1219
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1083
1220
|
export import CanvasColorationEffects = foundry.canvas.layers.CanvasColorationEffects;
|
1084
1221
|
|
1085
1222
|
/**
|
1086
1223
|
* @deprecated "You are accessing the global {@linkcode CanvasDarknessEffects} which is now namespaced under {@linkcode foundry.canvas.layers.CanvasDarknessEffects}"
|
1087
1224
|
* (since v13 will be removed in v15)
|
1088
1225
|
*/
|
1226
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1089
1227
|
export import CanvasDarknessEffects = foundry.canvas.layers.CanvasDarknessEffects;
|
1090
1228
|
|
1091
1229
|
/**
|
1092
1230
|
* @deprecated "You are accessing the global {@linkcode CanvasIlluminationEffects} which is now namespaced under {@linkcode foundry.canvas.layers.CanvasIlluminationEffects}"
|
1093
1231
|
* (since v13 will be removed in v15)
|
1094
1232
|
*/
|
1233
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1095
1234
|
export import CanvasIlluminationEffects = foundry.canvas.layers.CanvasIlluminationEffects;
|
1096
1235
|
|
1097
1236
|
/**
|
1098
1237
|
* @deprecated "You are accessing the global {@linkcode WeatherEffects} which is now namespaced under {@linkcode foundry.canvas.layers.WeatherEffects}"
|
1099
1238
|
* (since v13 will be removed in v15)
|
1100
1239
|
*/
|
1240
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1101
1241
|
export import WeatherEffects = foundry.canvas.layers.WeatherEffects;
|
1102
1242
|
|
1103
1243
|
/**
|
1104
1244
|
* @deprecated "You are accessing the global {@linkcode GridLayer} which is now namespaced under {@linkcode foundry.canvas.layers.GridLayer}"
|
1105
1245
|
* (since v13 will be removed in v15)
|
1106
1246
|
*/
|
1247
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1107
1248
|
export import GridLayer = foundry.canvas.layers.GridLayer;
|
1108
1249
|
|
1109
1250
|
/**
|
1110
1251
|
* @deprecated "You are accessing the global {@linkcode CanvasDepthMask} which is now namespaced under {@linkcode foundry.canvas.layers.CanvasDepthMask}"
|
1111
1252
|
* (since v13 will be removed in v15)
|
1112
1253
|
*/
|
1254
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1113
1255
|
export import CanvasDepthMask = foundry.canvas.layers.CanvasDepthMask;
|
1114
1256
|
|
1115
1257
|
/**
|
1116
1258
|
* @deprecated "You are accessing the global {@linkcode CanvasOcclusionMask} which is now namespaced under {@linkcode foundry.canvas.layers.CanvasOcclusionMask}"
|
1117
1259
|
* (since v13 will be removed in v15)
|
1118
1260
|
*/
|
1261
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1119
1262
|
export import CanvasOcclusionMask = foundry.canvas.layers.CanvasOcclusionMask;
|
1120
1263
|
|
1121
1264
|
/**
|
1122
1265
|
* @deprecated "You are accessing the global {@linkcode CanvasVisionMask} which is now namespaced under {@linkcode foundry.canvas.layers.CanvasVisionMask}"
|
1123
1266
|
* (since v13 will be removed in v15)
|
1124
1267
|
*/
|
1268
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1125
1269
|
export import CanvasVisionMask = foundry.canvas.layers.CanvasVisionMask;
|
1126
1270
|
|
1127
1271
|
/**
|
1128
1272
|
* @deprecated "You are accessing the global {@linkcode DarknessLevelContainer} which is now namespaced under {@linkcode foundry.canvas.layers.DarknessLevelContainer}"
|
1129
1273
|
* (since v13 will be removed in v15)
|
1130
1274
|
*/
|
1275
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1131
1276
|
export import DarknessLevelContainer = foundry.canvas.layers.DarknessLevelContainer;
|
1132
1277
|
|
1133
1278
|
/**
|
1134
1279
|
* @deprecated "You are accessing the global {@linkcode DrawingsLayer} which is now namespaced under {@linkcode foundry.canvas.layers.DrawingsLayer}"
|
1135
1280
|
* (since v13 will be removed in v15)
|
1136
1281
|
*/
|
1282
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1137
1283
|
export import DrawingsLayer = foundry.canvas.layers.DrawingsLayer;
|
1138
1284
|
|
1139
1285
|
/**
|
1140
1286
|
* @deprecated "You are accessing the global {@linkcode NotesLayer} which is now namespaced under {@linkcode foundry.canvas.layers.NotesLayer}"
|
1141
1287
|
* (since v13 will be removed in v15)
|
1142
1288
|
*/
|
1289
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1143
1290
|
export import NotesLayer = foundry.canvas.layers.NotesLayer;
|
1144
1291
|
|
1145
1292
|
/**
|
1146
1293
|
* @deprecated "You are accessing the global {@linkcode SoundsLayer} which is now namespaced under {@linkcode foundry.canvas.layers.SoundsLayer}"
|
1147
1294
|
* (since v13 will be removed in v15)
|
1148
1295
|
*/
|
1296
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1149
1297
|
export import SoundsLayer = foundry.canvas.layers.SoundsLayer;
|
1150
1298
|
|
1151
1299
|
/**
|
1152
1300
|
* @deprecated "You are accessing the global {@linkcode TemplateLayer} which is now namespaced under {@linkcode foundry.canvas.layers.TemplateLayer}"
|
1153
1301
|
* (since v13 will be removed in v15)
|
1154
1302
|
*/
|
1303
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1155
1304
|
export import TemplateLayer = foundry.canvas.layers.TemplateLayer;
|
1156
1305
|
|
1157
1306
|
/**
|
1158
1307
|
* @deprecated "You are accessing the global {@linkcode TilesLayer} which is now namespaced under {@linkcode foundry.canvas.layers.TilesLayer}"
|
1159
1308
|
* (since v13 will be removed in v15)
|
1160
1309
|
*/
|
1310
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1161
1311
|
export import TilesLayer = foundry.canvas.layers.TilesLayer;
|
1162
1312
|
|
1163
1313
|
/**
|
1164
1314
|
* @deprecated "You are accessing the global {@linkcode WallsLayer} which is now namespaced under {@linkcode foundry.canvas.layers.WallsLayer}"
|
1165
1315
|
* (since v13 will be removed in v15)
|
1166
1316
|
*/
|
1317
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1167
1318
|
export import WallsLayer = foundry.canvas.layers.WallsLayer;
|
1168
1319
|
|
1169
1320
|
/**
|
1170
1321
|
* @deprecated "You are accessing the global {@linkcode RegionLayer} which is now namespaced under {@linkcode foundry.canvas.layers.RegionLayer}"
|
1171
1322
|
* (since v13 will be removed in v15)
|
1172
1323
|
*/
|
1324
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1173
1325
|
export import RegionLayer = foundry.canvas.layers.RegionLayer;
|
1174
1326
|
|
1175
1327
|
/**
|
1176
1328
|
* @deprecated "You are accessing the global {@linkcode LightingLayer} which is now namespaced under {@linkcode foundry.canvas.layers.LightingLayer}"
|
1177
1329
|
* (since v13 will be removed in v15)
|
1178
1330
|
*/
|
1331
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1179
1332
|
export import LightingLayer = foundry.canvas.layers.LightingLayer;
|
1180
1333
|
|
1181
1334
|
/**
|
1182
1335
|
* @deprecated "You are accessing the global {@linkcode TokenLayer} which is now namespaced under {@linkcode foundry.canvas.layers.TokenLayer}"
|
1183
1336
|
* (since v13 will be removed in v15)
|
1184
1337
|
*/
|
1338
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1185
1339
|
export import TokenLayer = foundry.canvas.layers.TokenLayer;
|
1186
1340
|
|
1187
1341
|
/**
|
1188
1342
|
* @deprecated "You are accessing the global {@linkcode PlaceableObject} which is now namespaced under {@linkcode foundry.canvas.placeables.PlaceableObject}"
|
1189
1343
|
* (since v13 will be removed in v15)
|
1190
1344
|
*/
|
1345
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1191
1346
|
export import PlaceableObject = foundry.canvas.placeables.PlaceableObject;
|
1192
1347
|
|
1193
1348
|
/**
|
1194
1349
|
* @deprecated "You are accessing the global {@linkcode Drawing} which is now namespaced under {@linkcode foundry.canvas.placeables.Drawing}"
|
1195
1350
|
* (since v13 will be removed in v15)
|
1196
1351
|
*/
|
1352
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1197
1353
|
export import Drawing = foundry.canvas.placeables.Drawing;
|
1198
1354
|
|
1199
1355
|
/**
|
1200
1356
|
* @deprecated "You are accessing the global {@linkcode Note} which is now namespaced under {@linkcode foundry.canvas.placeables.Note}"
|
1201
1357
|
* (since v13 will be removed in v15)
|
1202
1358
|
*/
|
1359
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1203
1360
|
export import Note = foundry.canvas.placeables.Note;
|
1204
1361
|
|
1205
1362
|
/**
|
1206
1363
|
* @deprecated "You are accessing the global {@linkcode Region} which is now namespaced under {@linkcode foundry.canvas.placeables.Region}"
|
1207
1364
|
* (since v13 will be removed in v15)
|
1208
1365
|
*/
|
1366
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1209
1367
|
export import Region = foundry.canvas.placeables.Region;
|
1210
1368
|
|
1211
1369
|
/**
|
1212
1370
|
* @deprecated "You are accessing the global {@linkcode Tile} which is now namespaced under {@linkcode foundry.canvas.placeables.Tile}"
|
1213
1371
|
* (since v13 will be removed in v15)
|
1214
1372
|
*/
|
1373
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1215
1374
|
export import Tile = foundry.canvas.placeables.Tile;
|
1216
1375
|
|
1217
1376
|
/**
|
1218
1377
|
* @deprecated "You are accessing the global {@linkcode Token} which is now namespaced under {@linkcode foundry.canvas.placeables.Token}"
|
1219
1378
|
* (since v13 will be removed in v15)
|
1220
1379
|
*/
|
1380
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1221
1381
|
export import Token = foundry.canvas.placeables.Token;
|
1222
1382
|
|
1223
1383
|
/**
|
1224
1384
|
* @deprecated "You are accessing the global {@linkcode MeasuredTemplate} which is now namespaced under {@linkcode foundry.canvas.placeables.MeasuredTemplate}"
|
1225
1385
|
* (since v13 will be removed in v15)
|
1226
1386
|
*/
|
1387
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1227
1388
|
export import MeasuredTemplate = foundry.canvas.placeables.MeasuredTemplate;
|
1228
1389
|
|
1229
1390
|
/**
|
1230
1391
|
* @deprecated "You are accessing the global {@linkcode Wall} which is now namespaced under {@linkcode foundry.canvas.placeables.Wall}"
|
1231
1392
|
* (since v13 will be removed in v15)
|
1232
1393
|
*/
|
1394
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1233
1395
|
export import Wall = foundry.canvas.placeables.Wall;
|
1234
1396
|
|
1235
1397
|
/**
|
1236
1398
|
* @deprecated "You are accessing the global {@linkcode AmbientLight} which is now namespaced under {@linkcode foundry.canvas.placeables.AmbientLight}"
|
1237
1399
|
* (since v13 will be removed in v15)
|
1238
1400
|
*/
|
1401
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1239
1402
|
export import AmbientLight = foundry.canvas.placeables.AmbientLight;
|
1240
1403
|
|
1241
1404
|
/**
|
1242
1405
|
* @deprecated "You are accessing the global {@linkcode AmbientSound} which is now namespaced under {@linkcode foundry.canvas.placeables.AmbientSound}"
|
1243
1406
|
* (since v13 will be removed in v15)
|
1244
1407
|
*/
|
1408
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1245
1409
|
export import AmbientSound = foundry.canvas.placeables.AmbientSound;
|
1246
1410
|
|
1247
1411
|
/**
|
1248
1412
|
* @deprecated "You are accessing the global {@linkcode Quadtree} which is now namespaced under {@linkcode foundry.canvas.geometry.Quadtree}"
|
1249
1413
|
* (since v13 will be removed in v15)
|
1250
1414
|
*/
|
1415
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1251
1416
|
export import Quadtree = foundry.canvas.geometry.Quadtree;
|
1252
1417
|
|
1253
1418
|
/**
|
1254
1419
|
* @deprecated "You are accessing the global {@linkcode CanvasQuadtree} which is now namespaced under {@linkcode foundry.canvas.geometry.CanvasQuadtree}"
|
1255
1420
|
* (since v13 will be removed in v15)
|
1256
1421
|
*/
|
1422
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1257
1423
|
export import CanvasQuadtree = foundry.canvas.geometry.CanvasQuadtree;
|
1258
1424
|
|
1259
1425
|
/**
|
1260
1426
|
* @deprecated "You are accessing the global {@linkcode UnboundTransform} which is now namespaced under {@linkcode foundry.canvas.geometry.UnboundTransform}"
|
1261
1427
|
* (since v13 will be removed in v15)
|
1262
1428
|
*/
|
1429
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1263
1430
|
export import UnboundTransform = foundry.canvas.geometry.UnboundTransform;
|
1264
1431
|
|
1265
1432
|
/**
|
1266
1433
|
* @deprecated "You are accessing the global {@linkcode ObservableTransform} which is now namespaced under {@linkcode foundry.canvas.geometry.ObservableTransform}"
|
1267
1434
|
* (since v13 will be removed in v15)
|
1268
1435
|
*/
|
1436
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1269
1437
|
export import ObservableTransform = foundry.canvas.geometry.ObservableTransform;
|
1270
1438
|
|
1271
1439
|
/**
|
1272
1440
|
* @deprecated "You are accessing the global {@linkcode LimitedAnglePolygon} which is now namespaced under {@linkcode foundry.canvas.geometry.LimitedAnglePolygon}"
|
1273
1441
|
* (since v13 will be removed in v15)
|
1274
1442
|
*/
|
1443
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1275
1444
|
export import LimitedAnglePolygon = foundry.canvas.geometry.LimitedAnglePolygon;
|
1276
1445
|
|
1277
1446
|
/**
|
1278
1447
|
* @deprecated "You are accessing the global {@linkcode PolygonMesher} which is now namespaced under {@linkcode foundry.canvas.geometry.PolygonMesher}"
|
1279
1448
|
* (since v13 will be removed in v15)
|
1280
1449
|
*/
|
1450
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1281
1451
|
export import PolygonMesher = foundry.canvas.geometry.PolygonMesher;
|
1282
1452
|
|
1283
1453
|
/**
|
1284
1454
|
* @deprecated "You are accessing the global {@linkcode Ray} which is now namespaced under {@linkcode foundry.canvas.geometry.Ray}"
|
1285
1455
|
* (since v13 will be removed in v15)
|
1286
1456
|
*/
|
1457
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1287
1458
|
export import Ray = foundry.canvas.geometry.Ray;
|
1288
1459
|
|
1289
1460
|
/**
|
1290
1461
|
* @deprecated "You are accessing the global {@linkcode PointSourcePolygon} which is now namespaced under {@linkcode foundry.canvas.geometry.PointSourcePolygon}"
|
1291
1462
|
* (since v13 will be removed in v15)
|
1292
1463
|
*/
|
1464
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1293
1465
|
export import PointSourcePolygon = foundry.canvas.geometry.PointSourcePolygon;
|
1294
1466
|
|
1295
1467
|
/**
|
1296
1468
|
* @deprecated "You are accessing the global {@linkcode ClockwiseSweepPolygon} which is now namespaced under {@linkcode foundry.canvas.geometry.ClockwiseSweepPolygon}"
|
1297
1469
|
* (since v13 will be removed in v15)
|
1298
1470
|
*/
|
1471
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1299
1472
|
export import ClockwiseSweepPolygon = foundry.canvas.geometry.ClockwiseSweepPolygon;
|
1300
1473
|
|
1301
1474
|
/**
|
1302
1475
|
* @deprecated "You are accessing the global {@linkcode WeilerAthertonClipper} which is now namespaced under {@linkcode foundry.canvas.geometry.WeilerAthertonClipper}"
|
1303
1476
|
* (since v13 will be removed in v15)
|
1304
1477
|
*/
|
1478
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1305
1479
|
export import WeilerAthertonClipper = foundry.canvas.geometry.WeilerAthertonClipper;
|
1306
1480
|
|
1307
1481
|
/**
|
1308
1482
|
* @deprecated "You are accessing the global {@linkcode CanvasAnimation} which is now namespaced under {@linkcode foundry.canvas.animation.CanvasAnimation}"
|
1309
1483
|
* (since v13 will be removed in v15)
|
1310
1484
|
*/
|
1485
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1311
1486
|
export import CanvasAnimation = foundry.canvas.animation.CanvasAnimation;
|
1312
1487
|
|
1313
1488
|
/**
|
1314
1489
|
* @deprecated "You are accessing the global {@linkcode ChatBubbles} which is now namespaced under {@linkcode foundry.canvas.animation.ChatBubbles}"
|
1315
1490
|
* (since v13 will be removed in v15)
|
1316
1491
|
*/
|
1492
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1317
1493
|
export import ChatBubbles = foundry.canvas.animation.ChatBubbles;
|
1318
1494
|
|
1319
1495
|
/**
|
1320
1496
|
* @deprecated "You are accessing the global {@linkcode SmoothNoise} which is now namespaced under {@linkcode foundry.canvas.animation.SmoothNoise}"
|
1321
1497
|
* (since v13 will be removed in v15)
|
1322
1498
|
*/
|
1499
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1323
1500
|
export import SmoothNoise = foundry.canvas.animation.SmoothNoise;
|
1324
1501
|
|
1325
1502
|
/**
|
1326
1503
|
* @deprecated "You are accessing the global {@linkcode MouseInteractionManager} which is now namespaced under {@linkcode foundry.canvas.interaction.MouseInteractionManager}"
|
1327
1504
|
* (since v13 will be removed in v15)
|
1328
1505
|
*/
|
1506
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1329
1507
|
export import MouseInteractionManager = foundry.canvas.interaction.MouseInteractionManager;
|
1330
1508
|
|
1331
1509
|
/**
|
1332
1510
|
* @deprecated "You are accessing the global {@linkcode RenderFlagsMixin} which is now namespaced under {@linkcode foundry.canvas.interaction.RenderFlagsMixin}"
|
1333
1511
|
* (since v13 will be removed in v15)
|
1334
1512
|
*/
|
1513
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1335
1514
|
export import RenderFlagsMixin = foundry.canvas.interaction.RenderFlagsMixin;
|
1336
1515
|
|
1337
1516
|
/**
|
1338
1517
|
* @deprecated "You are accessing the global {@linkcode RenderFlags} which is now namespaced under {@linkcode foundry.canvas.interaction.RenderFlags}"
|
1339
1518
|
* (since v13 will be removed in v15)
|
1340
1519
|
*/
|
1520
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1341
1521
|
export import RenderFlags = foundry.canvas.interaction.RenderFlags;
|
1342
1522
|
|
1343
1523
|
/**
|
1344
1524
|
* @deprecated "You are accessing the global {@linkcode Ping} which is now namespaced under {@linkcode foundry.canvas.interaction.Ping}"
|
1345
1525
|
* (since v13 will be removed in v15)
|
1346
1526
|
*/
|
1527
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1347
1528
|
export import Ping = foundry.canvas.interaction.Ping;
|
1348
1529
|
|
1349
1530
|
/**
|
1350
1531
|
* @deprecated "You are accessing the global {@linkcode PulsePing} which is now namespaced under {@linkcode foundry.canvas.interaction.PulsePing}"
|
1351
1532
|
* (since v13 will be removed in v15)
|
1352
1533
|
*/
|
1534
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1353
1535
|
export import PulsePing = foundry.canvas.interaction.PulsePing;
|
1354
1536
|
|
1355
1537
|
/**
|
1356
1538
|
* @deprecated "You are accessing the global {@linkcode ChevronPing} which is now namespaced under {@linkcode foundry.canvas.interaction.ChevronPing}"
|
1357
1539
|
* (since v13 will be removed in v15)
|
1358
1540
|
*/
|
1541
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1359
1542
|
export import ChevronPing = foundry.canvas.interaction.ChevronPing;
|
1360
1543
|
|
1361
1544
|
/**
|
1362
1545
|
* @deprecated "You are accessing the global {@linkcode AlertPing} which is now namespaced under {@linkcode foundry.canvas.interaction.AlertPing}"
|
1363
1546
|
* (since v13 will be removed in v15)
|
1364
1547
|
*/
|
1548
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1365
1549
|
export import AlertPing = foundry.canvas.interaction.AlertPing;
|
1366
1550
|
|
1367
1551
|
/**
|
1368
1552
|
* @deprecated "You are accessing the global {@linkcode ArrowPing} which is now namespaced under {@linkcode foundry.canvas.interaction.ArrowPing}"
|
1369
1553
|
* (since v13 will be removed in v15)
|
1370
1554
|
*/
|
1555
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1371
1556
|
export import ArrowPing = foundry.canvas.interaction.ArrowPing;
|
1372
1557
|
|
1373
1558
|
/**
|
1374
1559
|
* @deprecated "You are accessing the global {@linkcode Ruler} which is now namespaced under {@linkcode foundry.canvas.interaction.Ruler}"
|
1375
1560
|
* (since v13 will be removed in v15)
|
1376
1561
|
*/
|
1562
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1377
1563
|
export import Ruler = foundry.canvas.interaction.Ruler;
|
1378
1564
|
|
1379
1565
|
/**
|
1380
1566
|
* @deprecated "You are accessing the global {@linkcode UserTargets} which is now namespaced under {@linkcode foundry.canvas.placeables.tokens.UserTargets}"
|
1381
1567
|
* (since v13 will be removed in v15)
|
1382
1568
|
*/
|
1569
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1383
1570
|
export import UserTargets = foundry.canvas.placeables.tokens.UserTargets;
|
1384
1571
|
|
1385
1572
|
/**
|
1386
1573
|
* @deprecated "You are accessing the global {@linkcode TokenRing} which is now namespaced under {@linkcode foundry.canvas.placeables.tokens.TokenRing}"
|
1387
1574
|
* (since v13 will be removed in v15)
|
1388
1575
|
*/
|
1576
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1389
1577
|
export import TokenRing = foundry.canvas.placeables.tokens.TokenRing;
|
1390
1578
|
|
1391
1579
|
/**
|
1392
1580
|
* @deprecated "You are accessing the global {@linkcode TokenRingConfig} which is now namespaced under {@linkcode foundry.canvas.placeables.tokens.TokenRingConfig}"
|
1393
1581
|
* (since v13 will be removed in v15)
|
1394
1582
|
*/
|
1583
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1395
1584
|
export import TokenRingConfig = foundry.canvas.placeables.tokens.TokenRingConfig;
|
1396
1585
|
|
1397
1586
|
/**
|
1398
1587
|
* @deprecated "You are accessing the global {@linkcode DynamicRingData} which is now namespaced under {@linkcode foundry.canvas.placeables.tokens.DynamicRingData}"
|
1399
1588
|
* (since v13 will be removed in v15)
|
1400
1589
|
*/
|
1590
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1401
1591
|
export import DynamicRingData = foundry.canvas.placeables.tokens.DynamicRingData;
|
1402
1592
|
|
1403
1593
|
/**
|
1404
1594
|
* @deprecated "You are accessing the global {@linkcode RegionGeometry} which is now namespaced under {@linkcode foundry.canvas.placeables.regions.RegionGeometry}"
|
1405
1595
|
* (since v13 will be removed in v15)
|
1406
1596
|
*/
|
1597
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1407
1598
|
export import RegionGeometry = foundry.canvas.placeables.regions.RegionGeometry;
|
1408
1599
|
|
1409
1600
|
/**
|
1410
1601
|
* @deprecated "You are accessing the global {@linkcode RegionPolygonTree} which is now namespaced under {@linkcode foundry.data.regionShapes.RegionPolygonTree}"
|
1411
1602
|
* (since v13 will be removed in v15)
|
1412
1603
|
*/
|
1604
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1413
1605
|
export import RegionPolygonTree = foundry.data.regionShapes.RegionPolygonTree;
|
1414
1606
|
|
1415
1607
|
/**
|
1416
1608
|
* @deprecated "You are accessing the global {@linkcode RegionShape} which is now namespaced under {@linkcode foundry.data.regionShapes.RegionShape}"
|
1417
1609
|
* (since v13 will be removed in v15)
|
1418
1610
|
*/
|
1611
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1419
1612
|
export import RegionShape = foundry.data.regionShapes.RegionShape;
|
1420
1613
|
|
1421
1614
|
/**
|
1422
1615
|
* @deprecated "You are accessing the global {@linkcode RegionMesh} which is now namespaced under {@linkcode foundry.canvas.placeables.regions.RegionMesh}"
|
1423
1616
|
* (since v13 will be removed in v15)
|
1424
1617
|
*/
|
1618
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1425
1619
|
export import RegionMesh = foundry.canvas.placeables.regions.RegionMesh;
|
1426
1620
|
|
1427
1621
|
/**
|
1428
1622
|
* @deprecated "You are accessing the global {@linkcode FogManager} which is now namespaced under {@linkcode foundry.canvas.perception.FogManager}"
|
1429
1623
|
* (since v13 will be removed in v15)
|
1430
1624
|
*/
|
1625
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1431
1626
|
export import FogManager = foundry.canvas.perception.FogManager;
|
1432
1627
|
|
1433
1628
|
/**
|
1434
1629
|
* @deprecated "You are accessing the global {@linkcode PerceptionManager} which is now namespaced under {@linkcode foundry.canvas.perception.PerceptionManager}"
|
1435
1630
|
* (since v13 will be removed in v15)
|
1436
1631
|
*/
|
1632
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1437
1633
|
export import PerceptionManager = foundry.canvas.perception.PerceptionManager;
|
1438
1634
|
|
1439
1635
|
/**
|
1440
1636
|
* @deprecated "You are accessing the global {@linkcode VisionMode} which is now namespaced under {@linkcode foundry.canvas.perception.VisionMode}"
|
1441
1637
|
* (since v13 will be removed in v15)
|
1442
1638
|
*/
|
1639
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1443
1640
|
export import VisionMode = foundry.canvas.perception.VisionMode;
|
1444
1641
|
|
1445
1642
|
/**
|
1446
1643
|
* @deprecated "You are accessing the global {@linkcode DetectionMode} which is now namespaced under {@linkcode foundry.canvas.perception.DetectionMode}"
|
1447
1644
|
* (since v13 will be removed in v15)
|
1448
1645
|
*/
|
1646
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1449
1647
|
export import DetectionMode = foundry.canvas.perception.DetectionMode;
|
1450
1648
|
|
1451
1649
|
/**
|
1452
1650
|
* @deprecated "You are accessing the global {@linkcode DetectionModeAll} which is now namespaced under {@linkcode foundry.canvas.perception.DetectionModeAll}"
|
1453
1651
|
* (since v13 will be removed in v15)
|
1454
1652
|
*/
|
1653
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1455
1654
|
export import DetectionModeAll = foundry.canvas.perception.DetectionModeAll;
|
1456
1655
|
|
1457
1656
|
/**
|
1458
1657
|
* @deprecated "You are accessing the global {@linkcode DetectionModeLightPerception} which is now namespaced under {@linkcode foundry.canvas.perception.DetectionModeLightPerception}"
|
1459
1658
|
* (since v13 will be removed in v15)
|
1460
1659
|
*/
|
1660
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1461
1661
|
export import DetectionModeLightPerception = foundry.canvas.perception.DetectionModeLightPerception;
|
1462
1662
|
|
1463
1663
|
/**
|
1464
1664
|
* @deprecated "You are accessing the global {@linkcode DetectionModeInvisibility} which is now namespaced under {@linkcode foundry.canvas.perception.DetectionModeInvisibility}"
|
1465
1665
|
* (since v13 will be removed in v15)
|
1466
1666
|
*/
|
1667
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1467
1668
|
export import DetectionModeInvisibility = foundry.canvas.perception.DetectionModeInvisibility;
|
1468
1669
|
|
1469
1670
|
/**
|
1470
1671
|
* @deprecated "You are accessing the global {@linkcode DetectionModeBasicSight} which is now namespaced under {@linkcode foundry.canvas.perception.DetectionModeDarkvision}"
|
1471
1672
|
* (since v13 will be removed in v15)
|
1472
1673
|
*/
|
1674
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1473
1675
|
export import DetectionModeBasicSight = foundry.canvas.perception.DetectionModeDarkvision;
|
1474
1676
|
|
1475
1677
|
/**
|
1476
1678
|
* @deprecated "You are accessing the global {@linkcode DetectionModeTremor} which is now namespaced under {@linkcode foundry.canvas.perception.DetectionModeTremor}"
|
1477
1679
|
* (since v13 will be removed in v15)
|
1478
1680
|
*/
|
1681
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1479
1682
|
export import DetectionModeTremor = foundry.canvas.perception.DetectionModeTremor;
|
1480
1683
|
|
1481
1684
|
/**
|
1482
1685
|
* @deprecated "You are accessing the global {@linkcode PrimaryCanvasContainer} which is now namespaced under {@linkcode foundry.canvas.primary.PrimaryCanvasContainer}"
|
1483
1686
|
* (since v13 will be removed in v15)
|
1484
1687
|
*/
|
1688
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1485
1689
|
export import PrimaryCanvasContainer = foundry.canvas.primary.PrimaryCanvasContainer;
|
1486
1690
|
|
1487
1691
|
/**
|
1488
1692
|
* @deprecated "You are accessing the global {@linkcode PrimaryGraphics} which is now namespaced under {@linkcode foundry.canvas.primary.PrimaryGraphics}"
|
1489
1693
|
* (since v13 will be removed in v15)
|
1490
1694
|
*/
|
1695
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1491
1696
|
export import PrimaryGraphics = foundry.canvas.primary.PrimaryGraphics;
|
1492
1697
|
|
1493
1698
|
/**
|
1494
1699
|
* @deprecated "You are accessing the global {@linkcode PrimaryParticleEffect} which is now namespaced under {@linkcode foundry.canvas.primary.PrimaryParticleEffect}"
|
1495
1700
|
* (since v13 will be removed in v15)
|
1496
1701
|
*/
|
1702
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1497
1703
|
export import PrimaryParticleEffect = foundry.canvas.primary.PrimaryParticleEffect;
|
1498
1704
|
|
1499
1705
|
/**
|
1500
1706
|
* @deprecated "You are accessing the global {@linkcode PrimarySpriteMesh} which is now namespaced under {@linkcode foundry.canvas.primary.PrimarySpriteMesh}"
|
1501
1707
|
* (since v13 will be removed in v15)
|
1502
1708
|
*/
|
1709
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1503
1710
|
export import PrimarySpriteMesh = foundry.canvas.primary.PrimarySpriteMesh;
|
1504
1711
|
|
1505
1712
|
/**
|
1506
1713
|
* @deprecated "You are accessing the global {@linkcode PrimaryOccludableObjectMixin} which is now namespaced under {@linkcode foundry.canvas.primary.PrimaryOccludableObjectMixin}"
|
1507
1714
|
* (since v13 will be removed in v15)
|
1508
1715
|
*/
|
1716
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1509
1717
|
export import PrimaryOccludableObjectMixin = foundry.canvas.primary.PrimaryOccludableObjectMixin;
|
1510
1718
|
|
1511
1719
|
/**
|
1512
1720
|
* @deprecated "You are accessing the global {@linkcode PrimaryCanvasObjectMixin} which is now namespaced under {@linkcode foundry.canvas.primary.PrimaryCanvasObjectMixin}"
|
1513
1721
|
* (since v13 will be removed in v15)
|
1514
1722
|
*/
|
1723
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1515
1724
|
export import PrimaryCanvasObjectMixin = foundry.canvas.primary.PrimaryCanvasObjectMixin;
|
1516
1725
|
|
1517
1726
|
/**
|
1518
1727
|
* @deprecated "You are accessing the global {@linkcode CanvasTransformMixin} which is now namespaced under {@linkcode foundry.canvas.primary.CanvasTransformMixin}"
|
1519
1728
|
* (since v13 will be removed in v15)
|
1520
1729
|
*/
|
1730
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1521
1731
|
export import CanvasTransformMixin = foundry.canvas.primary.CanvasTransformMixin;
|
1522
1732
|
|
1523
1733
|
/**
|
1524
1734
|
* @deprecated "You are accessing the global {@linkcode BatchShaderGenerator} which is now namespaced under {@linkcode foundry.canvas.rendering.batching.BatchShaderGenerator}"
|
1525
1735
|
* (since v13 will be removed in v15)
|
1526
1736
|
*/
|
1737
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1527
1738
|
export import BatchShaderGenerator = foundry.canvas.rendering.batching.BatchShaderGenerator;
|
1528
1739
|
|
1529
1740
|
/**
|
1530
1741
|
* @deprecated "You are accessing the global {@linkcode BatchRenderer} which is now namespaced under {@linkcode foundry.canvas.rendering.batching.BatchRenderer}"
|
1531
1742
|
* (since v13 will be removed in v15)
|
1532
1743
|
*/
|
1744
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1533
1745
|
export import BatchRenderer = foundry.canvas.rendering.batching.BatchRenderer;
|
1534
1746
|
|
1535
1747
|
/**
|
1536
1748
|
* @deprecated "You are accessing the global {@linkcode SMAAFilter} which is now namespaced under {@linkcode foundry.canvas.rendering.filters.SMAAFilter}"
|
1537
1749
|
* (since v13 will be removed in v15)
|
1538
1750
|
*/
|
1751
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1539
1752
|
export import SMAAFilter = foundry.canvas.rendering.filters.SMAAFilter;
|
1540
1753
|
|
1541
1754
|
/**
|
1542
1755
|
* @deprecated "You are accessing the global {@linkcode AbstractBaseFilter} which is now namespaced under {@linkcode foundry.canvas.rendering.filters.AbstractBaseFilter}"
|
1543
1756
|
* (since v13 will be removed in v15)
|
1544
1757
|
*/
|
1758
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1545
1759
|
export import AbstractBaseFilter = foundry.canvas.rendering.filters.AbstractBaseFilter;
|
1546
1760
|
|
1547
1761
|
/**
|
1548
1762
|
* @deprecated "You are accessing the global {@linkcode AbstractBaseMaskFilter} which is now namespaced under {@linkcode foundry.canvas.rendering.filters.AbstractBaseMaskFilter}"
|
1549
1763
|
* (since v13 will be removed in v15)
|
1550
1764
|
*/
|
1765
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1551
1766
|
export import AbstractBaseMaskFilter = foundry.canvas.rendering.filters.AbstractBaseMaskFilter;
|
1552
1767
|
|
1553
1768
|
/**
|
1554
1769
|
* @deprecated "You are accessing the global {@linkcode VisualEffectsMaskingFilter} which is now namespaced under {@linkcode foundry.canvas.rendering.filters.VisualEffectsMaskingFilter}"
|
1555
1770
|
* (since v13 will be removed in v15)
|
1556
1771
|
*/
|
1772
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1557
1773
|
export import VisualEffectsMaskingFilter = foundry.canvas.rendering.filters.VisualEffectsMaskingFilter;
|
1558
1774
|
|
1559
1775
|
/**
|
1560
1776
|
* @deprecated "You are accessing the global {@linkcode PrimaryCanvasGroupAmbienceFilter} which is now namespaced under {@linkcode foundry.canvas.rendering.filters.PrimaryCanvasGroupAmbienceFilter}"
|
1561
1777
|
* (since v13 will be removed in v15)
|
1562
1778
|
*/
|
1779
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1563
1780
|
export import PrimaryCanvasGroupAmbienceFilter = foundry.canvas.rendering.filters.PrimaryCanvasGroupAmbienceFilter;
|
1564
1781
|
|
1565
1782
|
/**
|
1566
1783
|
* @deprecated "You are accessing the global {@linkcode GlowOverlayFilter} which is now namespaced under {@linkcode foundry.canvas.rendering.filters.GlowOverlayFilter}"
|
1567
1784
|
* (since v13 will be removed in v15)
|
1568
1785
|
*/
|
1786
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1569
1787
|
export import GlowOverlayFilter = foundry.canvas.rendering.filters.GlowOverlayFilter;
|
1570
1788
|
|
1571
1789
|
/**
|
1572
1790
|
* @deprecated "You are accessing the global {@linkcode InvisibilityFilter} which is now namespaced under {@linkcode foundry.canvas.rendering.filters.InvisibilityFilter}"
|
1573
1791
|
* (since v13 will be removed in v15)
|
1574
1792
|
*/
|
1793
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1575
1794
|
export import InvisibilityFilter = foundry.canvas.rendering.filters.InvisibilityFilter;
|
1576
1795
|
|
1577
1796
|
/**
|
1578
1797
|
* @deprecated "You are accessing the global {@linkcode OutlineOverlayFilter} which is now namespaced under {@linkcode foundry.canvas.rendering.filters.OutlineOverlayFilter}"
|
1579
1798
|
* (since v13 will be removed in v15)
|
1580
1799
|
*/
|
1800
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1581
1801
|
export import OutlineOverlayFilter = foundry.canvas.rendering.filters.OutlineOverlayFilter;
|
1582
1802
|
|
1583
1803
|
/**
|
1584
1804
|
* @deprecated "You are accessing the global {@linkcode TextureTransitionFilter} which is now namespaced under {@linkcode foundry.canvas.rendering.filters.TextureTransitionFilter}"
|
1585
1805
|
* (since v13 will be removed in v15)
|
1586
1806
|
*/
|
1807
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1587
1808
|
export import TextureTransitionFilter = foundry.canvas.rendering.filters.TextureTransitionFilter;
|
1588
1809
|
|
1589
1810
|
/**
|
1590
1811
|
* @deprecated "You are accessing the global {@linkcode VisibilityFilter} which is now namespaced under {@linkcode foundry.canvas.rendering.filters.VisibilityFilter}"
|
1591
1812
|
* (since v13 will be removed in v15)
|
1592
1813
|
*/
|
1814
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1593
1815
|
export import VisibilityFilter = foundry.canvas.rendering.filters.VisibilityFilter;
|
1594
1816
|
|
1595
1817
|
/**
|
1596
1818
|
* @deprecated "You are accessing the global {@linkcode VisionMaskFilter} which is now namespaced under {@linkcode foundry.canvas.rendering.filters.VisionMaskFilter}"
|
1597
1819
|
* (since v13 will be removed in v15)
|
1598
1820
|
*/
|
1821
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1599
1822
|
export import VisionMaskFilter = foundry.canvas.rendering.filters.VisionMaskFilter;
|
1600
1823
|
|
1601
1824
|
/**
|
1602
1825
|
* @deprecated "You are accessing the global {@linkcode VoidFilter} which is now namespaced under {@linkcode foundry.canvas.rendering.filters.VoidFilter}"
|
1603
1826
|
* (since v13 will be removed in v15)
|
1604
1827
|
*/
|
1828
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1605
1829
|
export import VoidFilter = foundry.canvas.rendering.filters.VoidFilter;
|
1606
1830
|
|
1607
1831
|
/**
|
1608
1832
|
* @deprecated "You are accessing the global {@linkcode AlphaBlurFilter} which is now namespaced under {@linkcode foundry.canvas.rendering.filters.AlphaBlurFilter}"
|
1609
1833
|
* (since v13 will be removed in v15)
|
1610
1834
|
*/
|
1835
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1611
1836
|
export import AlphaBlurFilter = foundry.canvas.rendering.filters.AlphaBlurFilter;
|
1612
1837
|
|
1613
1838
|
/**
|
1614
1839
|
* @deprecated "You are accessing the global {@linkcode AlphaBlurFilterPass} which is now namespaced under {@linkcode foundry.canvas.rendering.filters.AlphaBlurFilterPass}"
|
1615
1840
|
* (since v13 will be removed in v15)
|
1616
1841
|
*/
|
1842
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1617
1843
|
export import AlphaBlurFilterPass = foundry.canvas.rendering.filters.AlphaBlurFilterPass;
|
1618
1844
|
|
1619
1845
|
/**
|
1620
1846
|
* @deprecated "You are accessing the global {@linkcode WeatherOcclusionMaskFilter} which is now namespaced under {@linkcode foundry.canvas.rendering.filters.WeatherOcclusionMaskFilter}"
|
1621
1847
|
* (since v13 will be removed in v15)
|
1622
1848
|
*/
|
1849
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1623
1850
|
export import WeatherOcclusionMaskFilter = foundry.canvas.rendering.filters.WeatherOcclusionMaskFilter;
|
1624
1851
|
|
1625
1852
|
/**
|
1626
1853
|
* @deprecated "You are accessing the global {@linkcode BaseShaderMixin} which is now namespaced under {@linkcode foundry.canvas.rendering.mixins.BaseShaderMixin}"
|
1627
1854
|
* (since v13 will be removed in v15)
|
1628
1855
|
*/
|
1856
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1629
1857
|
export import BaseShaderMixin = foundry.canvas.rendering.mixins.BaseShaderMixin;
|
1630
1858
|
|
1631
1859
|
/**
|
1632
1860
|
* @deprecated "You are accessing the global {@linkcode AdaptiveFragmentChannelMixin} which is now namespaced under {@linkcode foundry.canvas.rendering.mixins.AdaptiveFragmentChannelMixin}"
|
1633
1861
|
* (since v13 will be removed in v15)
|
1634
1862
|
*/
|
1863
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1635
1864
|
export import AdaptiveFragmentChannelMixin = foundry.canvas.rendering.mixins.AdaptiveFragmentChannelMixin;
|
1636
1865
|
|
1637
1866
|
/**
|
1638
1867
|
* @deprecated "You are accessing the global {@linkcode AbstractBaseShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.AbstractBaseShader}"
|
1639
1868
|
* (since v13 will be removed in v15)
|
1640
1869
|
*/
|
1870
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1641
1871
|
export import AbstractBaseShader = foundry.canvas.rendering.shaders.AbstractBaseShader;
|
1642
1872
|
|
1643
1873
|
/**
|
1644
1874
|
* @deprecated "You are accessing the global {@linkcode GridShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.GridShader}"
|
1645
1875
|
* (since v13 will be removed in v15)
|
1646
1876
|
*/
|
1877
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1647
1878
|
export import GridShader = foundry.canvas.rendering.shaders.GridShader;
|
1648
1879
|
|
1649
1880
|
/**
|
1650
1881
|
* @deprecated "You are accessing the global {@linkcode AdaptiveLightingShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.AdaptiveLightingShader}"
|
1651
1882
|
* (since v13 will be removed in v15)
|
1652
1883
|
*/
|
1884
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1653
1885
|
export import AdaptiveLightingShader = foundry.canvas.rendering.shaders.AdaptiveLightingShader;
|
1654
1886
|
|
1655
1887
|
/**
|
1656
1888
|
* @deprecated "You are accessing the global {@linkcode AdaptiveBackgroundShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.AdaptiveBackgroundShader}"
|
1657
1889
|
* (since v13 will be removed in v15)
|
1658
1890
|
*/
|
1891
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1659
1892
|
export import AdaptiveBackgroundShader = foundry.canvas.rendering.shaders.AdaptiveBackgroundShader;
|
1660
1893
|
|
1661
1894
|
/**
|
1662
1895
|
* @deprecated "You are accessing the global {@linkcode AdaptiveColorationShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.AdaptiveColorationShader}"
|
1663
1896
|
* (since v13 will be removed in v15)
|
1664
1897
|
*/
|
1898
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1665
1899
|
export import AdaptiveColorationShader = foundry.canvas.rendering.shaders.AdaptiveColorationShader;
|
1666
1900
|
|
1667
1901
|
/**
|
1668
1902
|
* @deprecated "You are accessing the global {@linkcode AdaptiveDarknessShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.AdaptiveDarknessShader}"
|
1669
1903
|
* (since v13 will be removed in v15)
|
1670
1904
|
*/
|
1905
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1671
1906
|
export import AdaptiveDarknessShader = foundry.canvas.rendering.shaders.AdaptiveDarknessShader;
|
1672
1907
|
|
1673
1908
|
/**
|
1674
1909
|
* @deprecated "You are accessing the global {@linkcode AdaptiveIlluminationShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.AdaptiveIlluminationShader}"
|
1675
1910
|
* (since v13 will be removed in v15)
|
1676
1911
|
*/
|
1912
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1677
1913
|
export import AdaptiveIlluminationShader = foundry.canvas.rendering.shaders.AdaptiveIlluminationShader;
|
1678
1914
|
|
1679
1915
|
/**
|
1680
1916
|
* @deprecated "You are accessing the global {@linkcode BewitchingWaveColorationShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.BewitchingWaveColorationShader}"
|
1681
1917
|
* (since v13 will be removed in v15)
|
1682
1918
|
*/
|
1919
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1683
1920
|
export import BewitchingWaveColorationShader = foundry.canvas.rendering.shaders.BewitchingWaveColorationShader;
|
1684
1921
|
|
1685
1922
|
/**
|
1686
1923
|
* @deprecated "You are accessing the global {@linkcode BewitchingWaveIlluminationShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.BewitchingWaveIlluminationShader}"
|
1687
1924
|
* (since v13 will be removed in v15)
|
1688
1925
|
*/
|
1926
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1689
1927
|
export import BewitchingWaveIlluminationShader = foundry.canvas.rendering.shaders.BewitchingWaveIlluminationShader;
|
1690
1928
|
|
1691
1929
|
/**
|
1692
1930
|
* @deprecated "You are accessing the global {@linkcode BlackHoleDarknessShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.BlackHoleDarknessShader}"
|
1693
1931
|
* (since v13 will be removed in v15)
|
1694
1932
|
*/
|
1933
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1695
1934
|
export import BlackHoleDarknessShader = foundry.canvas.rendering.shaders.BlackHoleDarknessShader;
|
1696
1935
|
|
1697
1936
|
/**
|
1698
1937
|
* @deprecated "You are accessing the global {@linkcode ChromaColorationShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.ChromaColorationShader}"
|
1699
1938
|
* (since v13 will be removed in v15)
|
1700
1939
|
*/
|
1940
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1701
1941
|
export import ChromaColorationShader = foundry.canvas.rendering.shaders.ChromaColorationShader;
|
1702
1942
|
|
1703
1943
|
/**
|
1704
1944
|
* @deprecated "You are accessing the global {@linkcode EmanationColorationShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.EmanationColorationShader}"
|
1705
1945
|
* (since v13 will be removed in v15)
|
1706
1946
|
*/
|
1947
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1707
1948
|
export import EmanationColorationShader = foundry.canvas.rendering.shaders.EmanationColorationShader;
|
1708
1949
|
|
1709
1950
|
/**
|
1710
1951
|
* @deprecated "You are accessing the global {@linkcode EnergyFieldColorationShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.EnergyFieldColorationShader}"
|
1711
1952
|
* (since v13 will be removed in v15)
|
1712
1953
|
*/
|
1954
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1713
1955
|
export import EnergyFieldColorationShader = foundry.canvas.rendering.shaders.EnergyFieldColorationShader;
|
1714
1956
|
|
1715
1957
|
/**
|
1716
1958
|
* @deprecated "You are accessing the global {@linkcode FairyLightColorationShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.FairyLightColorationShader}"
|
1717
1959
|
* (since v13 will be removed in v15)
|
1718
1960
|
*/
|
1961
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1719
1962
|
export import FairyLightColorationShader = foundry.canvas.rendering.shaders.FairyLightColorationShader;
|
1720
1963
|
|
1721
1964
|
/**
|
1722
1965
|
* @deprecated "You are accessing the global {@linkcode FairyLightIlluminationShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.FairyLightIlluminationShader}"
|
1723
1966
|
* (since v13 will be removed in v15)
|
1724
1967
|
*/
|
1968
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1725
1969
|
export import FairyLightIlluminationShader = foundry.canvas.rendering.shaders.FairyLightIlluminationShader;
|
1726
1970
|
|
1727
1971
|
/**
|
1728
1972
|
* @deprecated "You are accessing the global {@linkcode FlameColorationShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.FlameColorationShader}"
|
1729
1973
|
* (since v13 will be removed in v15)
|
1730
1974
|
*/
|
1975
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1731
1976
|
export import FlameColorationShader = foundry.canvas.rendering.shaders.FlameColorationShader;
|
1732
1977
|
|
1733
1978
|
/**
|
1734
1979
|
* @deprecated "You are accessing the global {@linkcode FlameIlluminationShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.FlameIlluminationShader}"
|
1735
1980
|
* (since v13 will be removed in v15)
|
1736
1981
|
*/
|
1982
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1737
1983
|
export import FlameIlluminationShader = foundry.canvas.rendering.shaders.FlameIlluminationShader;
|
1738
1984
|
|
1739
1985
|
/**
|
1740
1986
|
* @deprecated "You are accessing the global {@linkcode FogColorationShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.FogColorationShader}"
|
1741
1987
|
* (since v13 will be removed in v15)
|
1742
1988
|
*/
|
1989
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1743
1990
|
export import FogColorationShader = foundry.canvas.rendering.shaders.FogColorationShader;
|
1744
1991
|
|
1745
1992
|
/**
|
1746
1993
|
* @deprecated "You are accessing the global {@linkcode ForceGridColorationShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.ForceGridColorationShader}"
|
1747
1994
|
* (since v13 will be removed in v15)
|
1748
1995
|
*/
|
1996
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1749
1997
|
export import ForceGridColorationShader = foundry.canvas.rendering.shaders.ForceGridColorationShader;
|
1750
1998
|
|
1751
1999
|
/**
|
1752
2000
|
* @deprecated "You are accessing the global {@linkcode GhostLightColorationShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.GhostLightColorationShader}"
|
1753
2001
|
* (since v13 will be removed in v15)
|
1754
2002
|
*/
|
2003
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1755
2004
|
export import GhostLightColorationShader = foundry.canvas.rendering.shaders.GhostLightColorationShader;
|
1756
2005
|
|
1757
2006
|
/**
|
1758
2007
|
* @deprecated "You are accessing the global {@linkcode GhostLightIlluminationShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.GhostLightIlluminationShader}"
|
1759
2008
|
* (since v13 will be removed in v15)
|
1760
2009
|
*/
|
2010
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1761
2011
|
export import GhostLightIlluminationShader = foundry.canvas.rendering.shaders.GhostLightIlluminationShader;
|
1762
2012
|
|
1763
2013
|
/**
|
1764
2014
|
* @deprecated "You are accessing the global {@linkcode HexaDomeColorationShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.HexaDomeColorationShader}"
|
1765
2015
|
* (since v13 will be removed in v15)
|
1766
2016
|
*/
|
2017
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1767
2018
|
export import HexaDomeColorationShader = foundry.canvas.rendering.shaders.HexaDomeColorationShader;
|
1768
2019
|
|
1769
2020
|
/**
|
1770
2021
|
* @deprecated "You are accessing the global {@linkcode LightDomeColorationShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.LightDomeColorationShader}"
|
1771
2022
|
* (since v13 will be removed in v15)
|
1772
2023
|
*/
|
2024
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1773
2025
|
export import LightDomeColorationShader = foundry.canvas.rendering.shaders.LightDomeColorationShader;
|
1774
2026
|
|
1775
2027
|
/**
|
1776
2028
|
* @deprecated "You are accessing the global {@linkcode MagicalGloomDarknessShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.MagicalGloomDarknessShader}"
|
1777
2029
|
* (since v13 will be removed in v15)
|
1778
2030
|
*/
|
2031
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1779
2032
|
export import MagicalGloomDarknessShader = foundry.canvas.rendering.shaders.MagicalGloomDarknessShader;
|
1780
2033
|
|
1781
2034
|
/**
|
1782
2035
|
* @deprecated "You are accessing the global {@linkcode PulseColorationShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.PulseColorationShader}"
|
1783
2036
|
* (since v13 will be removed in v15)
|
1784
2037
|
*/
|
2038
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1785
2039
|
export import PulseColorationShader = foundry.canvas.rendering.shaders.PulseColorationShader;
|
1786
2040
|
|
1787
2041
|
/**
|
1788
2042
|
* @deprecated "You are accessing the global {@linkcode PulseIlluminationShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.PulseIlluminationShader}"
|
1789
2043
|
* (since v13 will be removed in v15)
|
1790
2044
|
*/
|
2045
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1791
2046
|
export import PulseIlluminationShader = foundry.canvas.rendering.shaders.PulseIlluminationShader;
|
1792
2047
|
|
1793
2048
|
/**
|
1794
2049
|
* @deprecated "You are accessing the global {@linkcode RadialRainbowColorationShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.RadialRainbowColorationShader}"
|
1795
2050
|
* (since v13 will be removed in v15)
|
1796
2051
|
*/
|
2052
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1797
2053
|
export import RadialRainbowColorationShader = foundry.canvas.rendering.shaders.RadialRainbowColorationShader;
|
1798
2054
|
|
1799
2055
|
/**
|
1800
2056
|
* @deprecated "You are accessing the global {@linkcode RevolvingColorationShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.RevolvingColorationShader}"
|
1801
2057
|
* (since v13 will be removed in v15)
|
1802
2058
|
*/
|
2059
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1803
2060
|
export import RevolvingColorationShader = foundry.canvas.rendering.shaders.RevolvingColorationShader;
|
1804
2061
|
|
1805
2062
|
/**
|
1806
2063
|
* @deprecated "You are accessing the global {@linkcode RoilingDarknessShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.RoilingDarknessShader}"
|
1807
2064
|
* (since v13 will be removed in v15)
|
1808
2065
|
*/
|
2066
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1809
2067
|
export import RoilingDarknessShader = foundry.canvas.rendering.shaders.RoilingDarknessShader;
|
1810
2068
|
|
1811
2069
|
/**
|
1812
2070
|
* @deprecated "You are accessing the global {@linkcode SirenColorationShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.SirenColorationShader}"
|
1813
2071
|
* (since v13 will be removed in v15)
|
1814
2072
|
*/
|
2073
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1815
2074
|
export import SirenColorationShader = foundry.canvas.rendering.shaders.SirenColorationShader;
|
1816
2075
|
|
1817
2076
|
/**
|
1818
2077
|
* @deprecated "You are accessing the global {@linkcode SirenIlluminationShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.SirenIlluminationShader}"
|
1819
2078
|
* (since v13 will be removed in v15)
|
1820
2079
|
*/
|
2080
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1821
2081
|
export import SirenIlluminationShader = foundry.canvas.rendering.shaders.SirenIlluminationShader;
|
1822
2082
|
|
1823
2083
|
/**
|
1824
2084
|
* @deprecated "You are accessing the global {@linkcode SmokePatchColorationShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.SmokePatchColorationShader}"
|
1825
2085
|
* (since v13 will be removed in v15)
|
1826
2086
|
*/
|
2087
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1827
2088
|
export import SmokePatchColorationShader = foundry.canvas.rendering.shaders.SmokePatchColorationShader;
|
1828
2089
|
|
1829
2090
|
/**
|
1830
2091
|
* @deprecated "You are accessing the global {@linkcode SmokePatchIlluminationShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.SmokePatchIlluminationShader}"
|
1831
2092
|
* (since v13 will be removed in v15)
|
1832
2093
|
*/
|
2094
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1833
2095
|
export import SmokePatchIlluminationShader = foundry.canvas.rendering.shaders.SmokePatchIlluminationShader;
|
1834
2096
|
|
1835
2097
|
/**
|
1836
2098
|
* @deprecated "You are accessing the global {@linkcode StarLightColorationShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.StarLightColorationShader}"
|
1837
2099
|
* (since v13 will be removed in v15)
|
1838
2100
|
*/
|
2101
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1839
2102
|
export import StarLightColorationShader = foundry.canvas.rendering.shaders.StarLightColorationShader;
|
1840
2103
|
|
1841
2104
|
/**
|
1842
2105
|
* @deprecated "You are accessing the global {@linkcode SunburstColorationShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.SunburstColorationShader}"
|
1843
2106
|
* (since v13 will be removed in v15)
|
1844
2107
|
*/
|
2108
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1845
2109
|
export import SunburstColorationShader = foundry.canvas.rendering.shaders.SunburstColorationShader;
|
1846
2110
|
|
1847
2111
|
/**
|
1848
2112
|
* @deprecated "You are accessing the global {@linkcode SunburstIlluminationShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.SunburstIlluminationShader}"
|
1849
2113
|
* (since v13 will be removed in v15)
|
1850
2114
|
*/
|
2115
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1851
2116
|
export import SunburstIlluminationShader = foundry.canvas.rendering.shaders.SunburstIlluminationShader;
|
1852
2117
|
|
1853
2118
|
/**
|
1854
2119
|
* @deprecated "You are accessing the global {@linkcode SwirlingRainbowColorationShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.SwirlingRainbowColorationShader}"
|
1855
2120
|
* (since v13 will be removed in v15)
|
1856
2121
|
*/
|
2122
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1857
2123
|
export import SwirlingRainbowColorationShader = foundry.canvas.rendering.shaders.SwirlingRainbowColorationShader;
|
1858
2124
|
|
1859
2125
|
/**
|
1860
2126
|
* @deprecated "You are accessing the global {@linkcode TorchColorationShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.TorchColorationShader}"
|
1861
2127
|
* (since v13 will be removed in v15)
|
1862
2128
|
*/
|
2129
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1863
2130
|
export import TorchColorationShader = foundry.canvas.rendering.shaders.TorchColorationShader;
|
1864
2131
|
|
1865
2132
|
/**
|
1866
2133
|
* @deprecated "You are accessing the global {@linkcode TorchIlluminationShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.TorchIlluminationShader}"
|
1867
2134
|
* (since v13 will be removed in v15)
|
1868
2135
|
*/
|
2136
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1869
2137
|
export import TorchIlluminationShader = foundry.canvas.rendering.shaders.TorchIlluminationShader;
|
1870
2138
|
|
1871
2139
|
/**
|
1872
2140
|
* @deprecated "You are accessing the global {@linkcode VortexColorationShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.VortexColorationShader}"
|
1873
2141
|
* (since v13 will be removed in v15)
|
1874
2142
|
*/
|
2143
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1875
2144
|
export import VortexColorationShader = foundry.canvas.rendering.shaders.VortexColorationShader;
|
1876
2145
|
|
1877
2146
|
/**
|
1878
2147
|
* @deprecated "You are accessing the global {@linkcode VortexIlluminationShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.VortexIlluminationShader}"
|
1879
2148
|
* (since v13 will be removed in v15)
|
1880
2149
|
*/
|
2150
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1881
2151
|
export import VortexIlluminationShader = foundry.canvas.rendering.shaders.VortexIlluminationShader;
|
1882
2152
|
|
1883
2153
|
/**
|
1884
2154
|
* @deprecated "You are accessing the global {@linkcode WaveColorationShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.WaveColorationShader}"
|
1885
2155
|
* (since v13 will be removed in v15)
|
1886
2156
|
*/
|
2157
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1887
2158
|
export import WaveColorationShader = foundry.canvas.rendering.shaders.WaveColorationShader;
|
1888
2159
|
|
1889
2160
|
/**
|
1890
2161
|
* @deprecated "You are accessing the global {@linkcode WaveIlluminationShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.WaveIlluminationShader}"
|
1891
2162
|
* (since v13 will be removed in v15)
|
1892
2163
|
*/
|
2164
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1893
2165
|
export import WaveIlluminationShader = foundry.canvas.rendering.shaders.WaveIlluminationShader;
|
1894
2166
|
|
1895
2167
|
/**
|
1896
2168
|
* @deprecated "You are accessing the global {@linkcode AdaptiveVisionShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.AdaptiveVisionShader}"
|
1897
2169
|
* (since v13 will be removed in v15)
|
1898
2170
|
*/
|
2171
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1899
2172
|
export import AdaptiveVisionShader = foundry.canvas.rendering.shaders.AdaptiveVisionShader;
|
1900
2173
|
|
1901
2174
|
/**
|
1902
2175
|
* @deprecated "You are accessing the global {@linkcode BackgroundVisionShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.BackgroundVisionShader}"
|
1903
2176
|
* (since v13 will be removed in v15)
|
1904
2177
|
*/
|
2178
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1905
2179
|
export import BackgroundVisionShader = foundry.canvas.rendering.shaders.BackgroundVisionShader;
|
1906
2180
|
|
1907
2181
|
/**
|
1908
2182
|
* @deprecated "You are accessing the global {@linkcode ColorationVisionShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.ColorationVisionShader}"
|
1909
2183
|
* (since v13 will be removed in v15)
|
1910
2184
|
*/
|
2185
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1911
2186
|
export import ColorationVisionShader = foundry.canvas.rendering.shaders.ColorationVisionShader;
|
1912
2187
|
|
1913
2188
|
/**
|
1914
2189
|
* @deprecated "You are accessing the global {@linkcode IlluminationVisionShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.IlluminationVisionShader}"
|
1915
2190
|
* (since v13 will be removed in v15)
|
1916
2191
|
*/
|
2192
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1917
2193
|
export import IlluminationVisionShader = foundry.canvas.rendering.shaders.IlluminationVisionShader;
|
1918
2194
|
|
1919
2195
|
/**
|
1920
2196
|
* @deprecated "You are accessing the global {@linkcode AmplificationBackgroundVisionShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.AmplificationBackgroundVisionShader}"
|
1921
2197
|
* (since v13 will be removed in v15)
|
1922
2198
|
*/
|
2199
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1923
2200
|
export import AmplificationBackgroundVisionShader = foundry.canvas.rendering.shaders.AmplificationBackgroundVisionShader;
|
1924
2201
|
|
1925
2202
|
/**
|
1926
2203
|
* @deprecated "You are accessing the global {@linkcode WaveBackgroundVisionShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.WaveBackgroundVisionShader}"
|
1927
2204
|
* (since v13 will be removed in v15)
|
1928
2205
|
*/
|
2206
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1929
2207
|
export import WaveBackgroundVisionShader = foundry.canvas.rendering.shaders.WaveBackgroundVisionShader;
|
1930
2208
|
|
1931
2209
|
/**
|
1932
2210
|
* @deprecated "You are accessing the global {@linkcode WaveColorationVisionShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.WaveColorationVisionShader}"
|
1933
2211
|
* (since v13 will be removed in v15)
|
1934
2212
|
*/
|
2213
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1935
2214
|
export import WaveColorationVisionShader = foundry.canvas.rendering.shaders.WaveColorationVisionShader;
|
1936
2215
|
|
1937
2216
|
/**
|
1938
2217
|
* @deprecated "You are accessing the global {@linkcode RegionShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.RegionShader}"
|
1939
2218
|
* (since v13 will be removed in v15)
|
1940
2219
|
*/
|
2220
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1941
2221
|
export import RegionShader = foundry.canvas.rendering.shaders.RegionShader;
|
1942
2222
|
|
1943
2223
|
/**
|
1944
2224
|
* @deprecated "You are accessing the global {@linkcode HighlightRegionShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.HighlightRegionShader}"
|
1945
2225
|
* (since v13 will be removed in v15)
|
1946
2226
|
*/
|
2227
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1947
2228
|
export import HighlightRegionShader = foundry.canvas.rendering.shaders.HighlightRegionShader;
|
1948
2229
|
|
1949
2230
|
/**
|
1950
2231
|
* @deprecated "You are accessing the global {@linkcode AbstractDarknessLevelRegionShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.AbstractDarknessLevelRegionShader}"
|
1951
2232
|
* (since v13 will be removed in v15)
|
1952
2233
|
*/
|
2234
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1953
2235
|
export import AbstractDarknessLevelRegionShader = foundry.canvas.rendering.shaders.AbstractDarknessLevelRegionShader;
|
1954
2236
|
|
1955
2237
|
/**
|
1956
2238
|
* @deprecated "You are accessing the global {@linkcode AdjustDarknessLevelRegionShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.AdjustDarknessLevelRegionShader}"
|
1957
2239
|
* (since v13 will be removed in v15)
|
1958
2240
|
*/
|
2241
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1959
2242
|
export import AdjustDarknessLevelRegionShader = foundry.canvas.rendering.shaders.AdjustDarknessLevelRegionShader;
|
1960
2243
|
|
1961
2244
|
/**
|
1962
2245
|
* @deprecated "You are accessing the global {@linkcode IlluminationDarknessLevelRegionShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.IlluminationDarknessLevelRegionShader}"
|
1963
2246
|
* (since v13 will be removed in v15)
|
1964
2247
|
*/
|
2248
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1965
2249
|
export import IlluminationDarknessLevelRegionShader = foundry.canvas.rendering.shaders.IlluminationDarknessLevelRegionShader;
|
1966
2250
|
|
1967
2251
|
/**
|
1968
2252
|
* @deprecated "You are accessing the global {@linkcode BaseSamplerShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.BaseSamplerShader}"
|
1969
2253
|
* (since v13 will be removed in v15)
|
1970
2254
|
*/
|
2255
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1971
2256
|
export import BaseSamplerShader = foundry.canvas.rendering.shaders.BaseSamplerShader;
|
1972
2257
|
|
1973
2258
|
/**
|
1974
2259
|
* @deprecated "You are accessing the global {@linkcode BaselineIlluminationSamplerShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.BaselineIlluminationSamplerShader}"
|
1975
2260
|
* (since v13 will be removed in v15)
|
1976
2261
|
*/
|
2262
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1977
2263
|
export import BaselineIlluminationSamplerShader = foundry.canvas.rendering.shaders.BaselineIlluminationSamplerShader;
|
1978
2264
|
|
1979
2265
|
/**
|
1980
2266
|
* @deprecated "You are accessing the global {@linkcode ColorAdjustmentsSamplerShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.ColorAdjustmentsSamplerShader}"
|
1981
2267
|
* (since v13 will be removed in v15)
|
1982
2268
|
*/
|
2269
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1983
2270
|
export import ColorAdjustmentsSamplerShader = foundry.canvas.rendering.shaders.ColorAdjustmentsSamplerShader;
|
1984
2271
|
|
1985
2272
|
/**
|
1986
2273
|
* @deprecated "You are accessing the global {@linkcode AmplificationSamplerShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.AmplificationSamplerShader}"
|
1987
2274
|
* (since v13 will be removed in v15)
|
1988
2275
|
*/
|
2276
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1989
2277
|
export import AmplificationSamplerShader = foundry.canvas.rendering.shaders.AmplificationSamplerShader;
|
1990
2278
|
|
1991
2279
|
/**
|
1992
2280
|
* @deprecated "You are accessing the global {@linkcode FogSamplerShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.FogSamplerShader}"
|
1993
2281
|
* (since v13 will be removed in v15)
|
1994
2282
|
*/
|
2283
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
1995
2284
|
export import FogSamplerShader = foundry.canvas.rendering.shaders.FogSamplerShader;
|
1996
2285
|
|
1997
2286
|
/**
|
1998
2287
|
* @deprecated "You are accessing the global {@linkcode OccludableSamplerShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.OccludableSamplerShader}"
|
1999
2288
|
* (since v13 will be removed in v15)
|
2000
2289
|
*/
|
2290
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2001
2291
|
export import OccludableSamplerShader = foundry.canvas.rendering.shaders.OccludableSamplerShader;
|
2002
2292
|
|
2003
2293
|
/**
|
2004
2294
|
* @deprecated "You are accessing the global {@linkcode DepthSamplerShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.DepthSamplerShader}"
|
2005
2295
|
* (since v13 will be removed in v15)
|
2006
2296
|
*/
|
2297
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2007
2298
|
export import DepthSamplerShader = foundry.canvas.rendering.shaders.DepthSamplerShader;
|
2008
2299
|
|
2009
2300
|
/**
|
2010
2301
|
* @deprecated "You are accessing the global {@linkcode PrimaryBaseSamplerShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.PrimaryBaseSamplerShader}"
|
2011
2302
|
* (since v13 will be removed in v15)
|
2012
2303
|
*/
|
2304
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2013
2305
|
export import PrimaryBaseSamplerShader = foundry.canvas.rendering.shaders.PrimaryBaseSamplerShader;
|
2014
2306
|
|
2015
2307
|
/**
|
2016
2308
|
* @deprecated "You are accessing the global {@linkcode TokenRingSamplerShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.TokenRingSamplerShader}"
|
2017
2309
|
* (since v13 will be removed in v15)
|
2018
2310
|
*/
|
2311
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2019
2312
|
export import TokenRingSamplerShader = foundry.canvas.rendering.shaders.TokenRingSamplerShader;
|
2020
2313
|
|
2021
2314
|
/**
|
2022
2315
|
* @deprecated "You are accessing the global {@linkcode AbstractWeatherShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.AbstractWeatherShader}"
|
2023
2316
|
* (since v13 will be removed in v15)
|
2024
2317
|
*/
|
2318
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2025
2319
|
export import AbstractWeatherShader = foundry.canvas.rendering.shaders.AbstractWeatherShader;
|
2026
2320
|
|
2027
2321
|
/**
|
2028
2322
|
* @deprecated "You are accessing the global {@linkcode WeatherShaderEffect} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.WeatherShaderEffect}"
|
2029
2323
|
* (since v13 will be removed in v15)
|
2030
2324
|
*/
|
2325
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2031
2326
|
export import WeatherShaderEffect = foundry.canvas.rendering.shaders.WeatherShaderEffect;
|
2032
2327
|
|
2033
2328
|
/**
|
2034
2329
|
* @deprecated "You are accessing the global {@linkcode FogShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.FogShader}"
|
2035
2330
|
* (since v13 will be removed in v15)
|
2036
2331
|
*/
|
2332
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2037
2333
|
export import FogShader = foundry.canvas.rendering.shaders.FogShader;
|
2038
2334
|
|
2039
2335
|
/**
|
2040
2336
|
* @deprecated "You are accessing the global {@linkcode RainShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.RainShader}"
|
2041
2337
|
* (since v13 will be removed in v15)
|
2042
2338
|
*/
|
2339
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2043
2340
|
export import RainShader = foundry.canvas.rendering.shaders.RainShader;
|
2044
2341
|
|
2045
2342
|
/**
|
2046
2343
|
* @deprecated "You are accessing the global {@linkcode SnowShader} which is now namespaced under {@linkcode foundry.canvas.rendering.shaders.SnowShader}"
|
2047
2344
|
* (since v13 will be removed in v15)
|
2048
2345
|
*/
|
2346
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2049
2347
|
export import SnowShader = foundry.canvas.rendering.shaders.SnowShader;
|
2050
2348
|
|
2051
2349
|
/**
|
2052
2350
|
* @deprecated "You are accessing the global {@linkcode BLEND_MODES} which is now namespaced under {@linkcode foundry.canvas.rendering.BLEND_MODES}"
|
2053
2351
|
* (since v13 will be removed in v15)
|
2054
2352
|
*/
|
2353
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2055
2354
|
export import BLEND_MODES = foundry.canvas.rendering.BLEND_MODES;
|
2056
2355
|
|
2057
2356
|
/**
|
2058
2357
|
* @deprecated "You are accessing the global {@linkcode TextureCompressor} which is now namespaced under {@linkcode foundry.canvas.workers.TextureCompressor}"
|
2059
2358
|
* (since v13 will be removed in v15)
|
2060
2359
|
*/
|
2360
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2061
2361
|
export import TextureCompressor = foundry.canvas.workers.TextureCompressor;
|
2062
2362
|
|
2063
2363
|
/**
|
2064
2364
|
* @deprecated "You are accessing the global {@linkcode ClientDocumentMixin} which is now namespaced under {@linkcode foundry.documents.abstract.ClientDocumentMixin}"
|
2065
2365
|
* (since v13 will be removed in v15)
|
2066
2366
|
*/
|
2367
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2067
2368
|
export import ClientDocumentMixin = foundry.documents.abstract.ClientDocumentMixin;
|
2068
2369
|
|
2069
2370
|
/**
|
2070
2371
|
* @deprecated "You are accessing the global {@linkcode CanvasDocumentMixin} which is now namespaced under {@linkcode foundry.documents.abstract.CanvasDocumentMixin}"
|
2071
2372
|
* (since v13 will be removed in v15)
|
2072
2373
|
*/
|
2374
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2073
2375
|
export import CanvasDocumentMixin = foundry.documents.abstract.CanvasDocumentMixin;
|
2074
2376
|
|
2075
2377
|
/**
|
2076
2378
|
* @deprecated "You are accessing the global {@linkcode DirectoryCollectionMixin} which is now namespaced under {@linkcode foundry.documents.abstract.DirectoryCollectionMixin}"
|
2077
2379
|
* (since v13 will be removed in v15)
|
2078
2380
|
*/
|
2381
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2079
2382
|
export import DirectoryCollectionMixin = foundry.documents.abstract.DirectoryCollectionMixin;
|
2080
2383
|
|
2081
2384
|
/**
|
2082
2385
|
* @deprecated "You are accessing the global {@linkcode DocumentCollection} which is now namespaced under {@linkcode foundry.documents.abstract.DocumentCollection}"
|
2083
2386
|
* (since v13 will be removed in v15)
|
2084
2387
|
*/
|
2388
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2085
2389
|
export import DocumentCollection = foundry.documents.abstract.DocumentCollection;
|
2086
2390
|
|
2087
2391
|
/**
|
2088
2392
|
* @deprecated "You are accessing the global {@linkcode WorldCollection} which is now namespaced under {@linkcode foundry.documents.abstract.WorldCollection}"
|
2089
2393
|
* (since v13 will be removed in v15)
|
2090
2394
|
*/
|
2395
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2091
2396
|
export import WorldCollection = foundry.documents.abstract.WorldCollection;
|
2092
2397
|
|
2093
2398
|
/**
|
2094
2399
|
* @deprecated "You are accessing the global {@linkcode Actors} which is now namespaced under {@linkcode foundry.documents.collections.Actors}"
|
2095
2400
|
* (since v13 will be removed in v15)
|
2096
2401
|
*/
|
2402
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2097
2403
|
export import Actors = foundry.documents.collections.Actors;
|
2098
2404
|
|
2099
2405
|
/**
|
2100
2406
|
* @deprecated "You are accessing the global {@linkcode CardStacks} which is now namespaced under {@linkcode foundry.documents.collections.CardStacks}"
|
2101
2407
|
* (since v13 will be removed in v15)
|
2102
2408
|
*/
|
2409
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2103
2410
|
export import CardStacks = foundry.documents.collections.CardStacks;
|
2104
2411
|
|
2105
2412
|
/**
|
2106
2413
|
* @deprecated "You are accessing the global {@linkcode CombatEncounters} which is now namespaced under {@linkcode foundry.documents.collections.CombatEncounters}"
|
2107
2414
|
* (since v13 will be removed in v15)
|
2108
2415
|
*/
|
2416
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2109
2417
|
export import CombatEncounters = foundry.documents.collections.CombatEncounters;
|
2110
2418
|
|
2111
2419
|
/**
|
2112
2420
|
* @deprecated "You are accessing the global {@linkcode FogExplorations} which is now namespaced under {@linkcode foundry.documents.collections.FogExplorations}"
|
2113
2421
|
* (since v13 will be removed in v15)
|
2114
2422
|
*/
|
2423
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2115
2424
|
export import FogExplorations = foundry.documents.collections.FogExplorations;
|
2116
2425
|
|
2117
2426
|
/**
|
2118
2427
|
* @deprecated "You are accessing the global {@linkcode Folders} which is now namespaced under {@linkcode foundry.documents.collections.Folders}"
|
2119
2428
|
* (since v13 will be removed in v15)
|
2120
2429
|
*/
|
2430
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2121
2431
|
export import Folders = foundry.documents.collections.Folders;
|
2122
2432
|
|
2123
2433
|
/**
|
2124
2434
|
* @deprecated "You are accessing the global {@linkcode Items} which is now namespaced under {@linkcode foundry.documents.collections.Items}"
|
2125
2435
|
* (since v13 will be removed in v15)
|
2126
2436
|
*/
|
2437
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2127
2438
|
export import Items = foundry.documents.collections.Items;
|
2128
2439
|
|
2129
2440
|
/**
|
2130
2441
|
* @deprecated "You are accessing the global {@linkcode Journal} which is now namespaced under {@linkcode foundry.documents.collections.Journal}"
|
2131
2442
|
* (since v13 will be removed in v15)
|
2132
2443
|
*/
|
2444
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2133
2445
|
export import Journal = foundry.documents.collections.Journal;
|
2134
2446
|
|
2135
2447
|
/**
|
2136
2448
|
* @deprecated "You are accessing the global {@linkcode Macros} which is now namespaced under {@linkcode foundry.documents.collections.Macros}"
|
2137
2449
|
* (since v13 will be removed in v15)
|
2138
2450
|
*/
|
2451
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2139
2452
|
export import Macros = foundry.documents.collections.Macros;
|
2140
2453
|
|
2141
2454
|
/**
|
2142
2455
|
* @deprecated "You are accessing the global {@linkcode Messages} which is now namespaced under {@linkcode foundry.documents.collections.ChatMessages}"
|
2143
2456
|
* (since v13 will be removed in v15)
|
2144
2457
|
*/
|
2458
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2145
2459
|
export import Messages = foundry.documents.collections.ChatMessages;
|
2146
2460
|
|
2147
2461
|
/**
|
2148
2462
|
* @deprecated "You are accessing the global {@linkcode Playlists} which is now namespaced under {@linkcode foundry.documents.collections.Playlists}"
|
2149
2463
|
* (since v13 will be removed in v15)
|
2150
2464
|
*/
|
2465
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2151
2466
|
export import Playlists = foundry.documents.collections.Playlists;
|
2152
2467
|
|
2153
2468
|
/**
|
2154
2469
|
* @deprecated "You are accessing the global {@linkcode RollTables} which is now namespaced under {@linkcode foundry.documents.collections.RollTables}"
|
2155
2470
|
* (since v13 will be removed in v15)
|
2156
2471
|
*/
|
2472
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2157
2473
|
export import RollTables = foundry.documents.collections.RollTables;
|
2158
2474
|
|
2159
2475
|
/**
|
2160
2476
|
* @deprecated "You are accessing the global {@linkcode Scenes} which is now namespaced under {@linkcode foundry.documents.collections.Scenes}"
|
2161
2477
|
* (since v13 will be removed in v15)
|
2162
2478
|
*/
|
2479
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2163
2480
|
export import Scenes = foundry.documents.collections.Scenes;
|
2164
2481
|
|
2165
2482
|
/**
|
2166
2483
|
* @deprecated "You are accessing the global {@linkcode WorldSettings} which is now namespaced under {@linkcode foundry.documents.collections.WorldSettings}"
|
2167
2484
|
* (since v13 will be removed in v15)
|
2168
2485
|
*/
|
2486
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2169
2487
|
export import WorldSettings = foundry.documents.collections.WorldSettings;
|
2170
2488
|
|
2171
2489
|
/**
|
2172
2490
|
* @deprecated "You are accessing the global {@linkcode Users} which is now namespaced under {@linkcode foundry.documents.collections.Users}"
|
2173
2491
|
* (since v13 will be removed in v15)
|
2174
2492
|
*/
|
2493
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2175
2494
|
export import Users = foundry.documents.collections.Users;
|
2176
2495
|
|
2177
2496
|
/**
|
2178
2497
|
* @deprecated "You are accessing the global {@linkcode CompendiumCollection} which is now namespaced under {@linkcode foundry.documents.collections.CompendiumCollection}"
|
2179
2498
|
* (since v13 will be removed in v15)
|
2180
2499
|
*/
|
2500
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2181
2501
|
export import CompendiumCollection = foundry.documents.collections.CompendiumCollection;
|
2182
2502
|
|
2183
2503
|
/**
|
2184
2504
|
* @deprecated "You are accessing the global {@linkcode CompendiumFolderCollection} which is now namespaced under {@linkcode foundry.documents.collections.CompendiumFolderCollection}"
|
2185
2505
|
* (since v13 will be removed in v15)
|
2186
2506
|
*/
|
2507
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2187
2508
|
export import CompendiumFolderCollection = foundry.documents.collections.CompendiumFolderCollection;
|
2188
2509
|
|
2189
2510
|
/**
|
2190
2511
|
* @deprecated "You are accessing the global {@linkcode CompendiumPacks} which is now namespaced under {@linkcode foundry.documents.collections.CompendiumPacks}"
|
2191
2512
|
* (since v13 will be removed in v15)
|
2192
2513
|
*/
|
2514
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2193
2515
|
export import CompendiumPacks = foundry.documents.collections.CompendiumPacks;
|
2194
2516
|
|
2195
2517
|
/**
|
2196
2518
|
* @deprecated "You are accessing the global {@linkcode AsyncWorker} which is now namespaced under {@linkcode foundry.helpers.AsyncWorker}"
|
2197
2519
|
* (since v13 will be removed in v15)
|
2198
2520
|
*/
|
2521
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2199
2522
|
export import AsyncWorker = foundry.helpers.AsyncWorker;
|
2200
2523
|
|
2201
2524
|
/**
|
2202
2525
|
* @deprecated "You are accessing the global {@linkcode ClientIssues} which is now namespaced under {@linkcode foundry.helpers.ClientIssues}"
|
2203
2526
|
* (since v13 will be removed in v15)
|
2204
2527
|
*/
|
2528
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2205
2529
|
export import ClientIssues = foundry.helpers.ClientIssues;
|
2206
2530
|
|
2207
2531
|
/**
|
2208
2532
|
* @deprecated "You are accessing the global {@linkcode ClientKeybindings} which is now namespaced under {@linkcode foundry.helpers.interaction.ClientKeybindings}"
|
2209
2533
|
* (since v13 will be removed in v15)
|
2210
2534
|
*/
|
2535
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2211
2536
|
export import ClientKeybindings = foundry.helpers.interaction.ClientKeybindings;
|
2212
2537
|
|
2213
2538
|
/**
|
2214
2539
|
* @deprecated "You are accessing the global {@linkcode ClientSettings} which is now namespaced under {@linkcode foundry.helpers.ClientSettings}"
|
2215
2540
|
* (since v13 will be removed in v15)
|
2216
2541
|
*/
|
2542
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2217
2543
|
export import ClientSettings = foundry.helpers.ClientSettings;
|
2218
2544
|
|
2219
2545
|
/**
|
2220
2546
|
* @deprecated "You are accessing the global {@linkcode ClipboardHelper} which is now namespaced under {@linkcode foundry.helpers.interaction.ClipboardHelper}"
|
2221
2547
|
* (since v13 will be removed in v15)
|
2222
2548
|
*/
|
2549
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2223
2550
|
export import ClipboardHelper = foundry.helpers.interaction.ClipboardHelper;
|
2224
2551
|
|
2225
2552
|
/**
|
2226
2553
|
* @deprecated "You are accessing the global {@linkcode DocumentIndex} which is now namespaced under {@linkcode foundry.helpers.DocumentIndex}"
|
2227
2554
|
* (since v13 will be removed in v15)
|
2228
2555
|
*/
|
2556
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2229
2557
|
export import DocumentIndex = foundry.helpers.DocumentIndex;
|
2230
2558
|
|
2231
2559
|
/**
|
2232
2560
|
* @deprecated "You are accessing the global {@linkcode GameTime} which is now namespaced under {@linkcode foundry.helpers.GameTime}"
|
2233
2561
|
* (since v13 will be removed in v15)
|
2234
2562
|
*/
|
2563
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2235
2564
|
export import GameTime = foundry.helpers.GameTime;
|
2236
2565
|
|
2237
2566
|
/**
|
2238
2567
|
* @deprecated "You are accessing the global {@linkcode GamepadManager} which is now namespaced under {@linkcode foundry.helpers.interaction.GamepadManager}"
|
2239
2568
|
* (since v13 will be removed in v15)
|
2240
2569
|
*/
|
2570
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2241
2571
|
export import GamepadManager = foundry.helpers.interaction.GamepadManager;
|
2242
2572
|
|
2243
2573
|
/**
|
2244
2574
|
* @deprecated "You are accessing the global {@linkcode ImageHelper} which is now namespaced under {@linkcode foundry.helpers.media.ImageHelper}"
|
2245
2575
|
* (since v13 will be removed in v15)
|
2246
2576
|
*/
|
2577
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2247
2578
|
export import ImageHelper = foundry.helpers.media.ImageHelper;
|
2248
2579
|
|
2249
2580
|
/**
|
2250
2581
|
* @deprecated "You are accessing the global {@linkcode KeyboardManager} which is now namespaced under {@linkcode foundry.helpers.interaction.KeyboardManager}"
|
2251
2582
|
* (since v13 will be removed in v15)
|
2252
2583
|
*/
|
2584
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2253
2585
|
export import KeyboardManager = foundry.helpers.interaction.KeyboardManager;
|
2254
2586
|
|
2255
2587
|
/**
|
2256
2588
|
* @deprecated "You are accessing the global {@linkcode Localization} which is now namespaced under {@linkcode foundry.helpers.Localization}"
|
2257
2589
|
* (since v13 will be removed in v15)
|
2258
2590
|
*/
|
2591
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2259
2592
|
export import Localization = foundry.helpers.Localization;
|
2260
2593
|
|
2261
2594
|
/**
|
2262
2595
|
* @deprecated "You are accessing the global {@linkcode MouseManager} which is now namespaced under {@linkcode foundry.helpers.interaction.MouseManager}"
|
2263
2596
|
* (since v13 will be removed in v15)
|
2264
2597
|
*/
|
2598
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2265
2599
|
export import MouseManager = foundry.helpers.interaction.MouseManager;
|
2266
2600
|
|
2267
2601
|
/**
|
2268
2602
|
* @deprecated "You are accessing the global {@linkcode SocketInterface} which is now namespaced under {@linkcode foundry.helpers.SocketInterface}"
|
2269
2603
|
* (since v13 will be removed in v15)
|
2270
2604
|
*/
|
2605
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2271
2606
|
export import SocketInterface = foundry.helpers.SocketInterface;
|
2272
2607
|
|
2273
2608
|
/**
|
@@ -2275,239 +2610,298 @@ declare global {
|
|
2275
2610
|
* (since v13 will be removed in v15)
|
2276
2611
|
* @privateRemarks TODO: This should return the configured class
|
2277
2612
|
*/
|
2613
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2278
2614
|
export import TooltipManager = foundry.helpers.interaction.TooltipManager;
|
2279
2615
|
|
2280
2616
|
/**
|
2281
2617
|
* @deprecated "You are accessing the global {@linkcode VideoHelper} which is now namespaced under {@linkcode foundry.helpers.media.VideoHelper}"
|
2282
2618
|
* (since v13 will be removed in v15)
|
2283
2619
|
*/
|
2620
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2284
2621
|
export import VideoHelper = foundry.helpers.media.VideoHelper;
|
2285
2622
|
|
2286
2623
|
/**
|
2287
2624
|
* @deprecated "You are accessing the global {@linkcode WorkerManager} which is now namespaced under {@linkcode foundry.helpers.WorkerManager}"
|
2288
2625
|
* (since v13 will be removed in v15)
|
2289
2626
|
*/
|
2627
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2290
2628
|
export import WorkerManager = foundry.helpers.WorkerManager;
|
2291
2629
|
|
2292
2630
|
/**
|
2293
2631
|
* @deprecated "You are accessing the global {@linkcode SortingHelpers} which is now namespaced under {@linkcode foundry.utils.SortingHelpers}"
|
2294
2632
|
* (since v13 will be removed in v15)
|
2295
2633
|
*/
|
2634
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2296
2635
|
export import SortingHelpers = foundry.utils.SortingHelpers;
|
2297
2636
|
|
2298
2637
|
/**
|
2299
2638
|
* @deprecated "You are accessing the global {@linkcode saveDataToFile} which is now namespaced under {@linkcode foundry.utils.saveDataToFile}"
|
2300
2639
|
* (since v13 will be removed in v15)
|
2301
2640
|
*/
|
2641
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2302
2642
|
export import saveDataToFile = foundry.utils.saveDataToFile;
|
2303
2643
|
|
2304
2644
|
/**
|
2305
2645
|
* @deprecated "You are accessing the global {@linkcode readTextFromFile} which is now namespaced under {@linkcode foundry.utils.readTextFromFile}"
|
2306
2646
|
* (since v13 will be removed in v15)
|
2307
2647
|
*/
|
2648
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2308
2649
|
export import readTextFromFile = foundry.utils.readTextFromFile;
|
2309
2650
|
|
2310
2651
|
/**
|
2311
2652
|
* @deprecated "You are accessing the global {@linkcode NewUserExperience} which is now namespaced under {@linkcode foundry.nue.NewUserExperienceManager}"
|
2312
2653
|
* (since v13 will be removed in v15)
|
2313
2654
|
*/
|
2655
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2314
2656
|
export import NewUserExperience = foundry.nue.NewUserExperienceManager;
|
2315
2657
|
|
2316
2658
|
/**
|
2317
2659
|
* @deprecated "You are accessing the global {@linkcode Tours} which is now namespaced under {@linkcode foundry.nue.ToursCollection}"
|
2318
2660
|
* (since v13 will be removed in v15)
|
2319
2661
|
*/
|
2662
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2320
2663
|
export import Tours = foundry.nue.ToursCollection;
|
2321
2664
|
|
2322
2665
|
/**
|
2323
2666
|
* @deprecated "You are accessing the global {@linkcode Tour} which is now namespaced under {@linkcode foundry.nue.Tour}"
|
2324
2667
|
* (since v13 will be removed in v15)
|
2325
2668
|
*/
|
2669
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2326
2670
|
export import Tour = foundry.nue.Tour;
|
2327
2671
|
|
2328
2672
|
/**
|
2329
2673
|
* @deprecated "You are accessing the global {@linkcode CanvasTour} which is now namespaced under {@linkcode foundry.nue.tours.CanvasTour}"
|
2330
2674
|
* (since v13 will be removed in v15)
|
2331
2675
|
*/
|
2676
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2332
2677
|
export import CanvasTour = foundry.nue.tours.CanvasTour;
|
2333
2678
|
|
2334
2679
|
/**
|
2335
2680
|
* @deprecated "You are accessing the global {@linkcode SetupTour} which is now namespaced under {@linkcode foundry.nue.tours.SetupTour}"
|
2336
2681
|
* (since v13 will be removed in v15)
|
2337
2682
|
*/
|
2683
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2338
2684
|
export import SetupTour = foundry.nue.tours.SetupTour;
|
2339
2685
|
|
2340
2686
|
/**
|
2341
2687
|
* @deprecated "You are accessing the global {@linkcode SidebarTour} which is now namespaced under {@linkcode foundry.nue.tours.SidebarTour}"
|
2342
2688
|
* (since v13 will be removed in v15)
|
2343
2689
|
*/
|
2690
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2344
2691
|
export import SidebarTour = foundry.nue.tours.SidebarTour;
|
2345
2692
|
|
2346
2693
|
/**
|
2347
2694
|
* @deprecated "You are accessing the global {@linkcode ClientPackageMixin} which is now namespaced under {@linkcode foundry.packages.ClientPackageMixin}"
|
2348
2695
|
* (since v13 will be removed in v15)
|
2349
2696
|
*/
|
2697
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2350
2698
|
export import ClientPackageMixin = foundry.packages.ClientPackageMixin;
|
2351
2699
|
|
2352
2700
|
/**
|
2353
2701
|
* @deprecated The ClientPackage namespace has been adjusted to ClientPackageMixin
|
2354
2702
|
*/
|
2703
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2355
2704
|
export import ClientPackage = foundry.packages.ClientPackageMixin;
|
2356
2705
|
|
2357
2706
|
/**
|
2358
2707
|
* @deprecated "You are accessing the global {@linkcode Module} which is now namespaced under {@linkcode foundry.packages.Module}"
|
2359
2708
|
* (since v13 will be removed in v15)
|
2360
2709
|
*/
|
2710
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2361
2711
|
export import Module = foundry.packages.Module;
|
2362
2712
|
|
2363
2713
|
/**
|
2364
2714
|
* @deprecated "You are accessing the global {@linkcode System} which is now namespaced under {@linkcode foundry.packages.System}"
|
2365
2715
|
* (since v13 will be removed in v15)
|
2366
2716
|
*/
|
2717
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2367
2718
|
export import System = foundry.packages.System;
|
2368
2719
|
|
2369
2720
|
/**
|
2370
2721
|
* @deprecated "You are accessing the global {@linkcode World} which is now namespaced under {@linkcode foundry.packages.World}"
|
2371
2722
|
* (since v13 will be removed in v15)
|
2372
2723
|
*/
|
2724
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2373
2725
|
export import World = foundry.packages.World;
|
2374
2726
|
|
2375
2727
|
/**
|
2376
2728
|
* @deprecated "You are accessing the global {@linkcode PACKAGE_TYPES} which is now namespaced under {@linkcode foundry.packages.PACKAGE_TYPES}"
|
2377
2729
|
* (since v13 will be removed in v15)
|
2378
2730
|
*/
|
2731
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2379
2732
|
export import PACKAGE_TYPES = foundry.packages.PACKAGE_TYPES;
|
2380
2733
|
|
2381
2734
|
// v12 deprecations
|
2382
2735
|
|
2383
2736
|
/** @deprecated since v12 will be removed in v14 */
|
2737
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2384
2738
|
export import Semaphore = _utils.Semaphore;
|
2385
2739
|
|
2386
2740
|
/** @deprecated since v12 will be removed in v14 */
|
2741
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2387
2742
|
export import IterableWeakMap = _utils.IterableWeakMap;
|
2388
2743
|
|
2389
2744
|
/** @deprecated since v12 will be removed in v14 */
|
2745
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2390
2746
|
export import IterableWeakSet = _utils.IterableWeakSet;
|
2391
2747
|
|
2392
2748
|
/* --- geometry --- */
|
2393
2749
|
|
2394
2750
|
/** @deprecated since v12 will be removed in v14 */
|
2751
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2395
2752
|
export import orient2dFast = _utils.orient2dFast;
|
2396
2753
|
|
2397
2754
|
/** @deprecated since v12 will be removed in v14 */
|
2755
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2398
2756
|
export import lineSegmentIntersects = _utils.lineSegmentIntersects;
|
2399
2757
|
|
2400
2758
|
/** @deprecated since v12 will be removed in v14 */
|
2759
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2401
2760
|
export import lineLineIntersection = _utils.lineLineIntersection;
|
2402
2761
|
|
2403
2762
|
/** @deprecated since v12 will be removed in v14 */
|
2763
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2404
2764
|
export import lineSegmentIntersection = _utils.lineSegmentIntersection;
|
2405
2765
|
|
2406
2766
|
/** @deprecated since v12 will be removed in v14 */
|
2767
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2407
2768
|
export import lineCircleIntersection = _utils.lineCircleIntersection;
|
2408
2769
|
|
2409
2770
|
/** @deprecated since v12 will be removed in v14 */
|
2771
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2410
2772
|
export import closestPointToSegment = _utils.closestPointToSegment;
|
2411
2773
|
|
2412
2774
|
/** @deprecated since v12 will be removed in v14 */
|
2775
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2413
2776
|
export import quadraticIntersection = _utils.quadraticIntersection;
|
2414
2777
|
|
2415
2778
|
/* --- helpers --- */
|
2416
2779
|
|
2417
2780
|
/** @deprecated since v12 will be removed in v14 */
|
2781
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2418
2782
|
export import benchmark = _utils.benchmark;
|
2419
2783
|
|
2420
2784
|
/** @deprecated since v12 will be removed in v14 */
|
2785
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2421
2786
|
export import threadLock = _utils.threadLock;
|
2422
2787
|
|
2423
2788
|
/** @deprecated since v12 will be removed in v14 */
|
2789
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2424
2790
|
export import debounce = _utils.debounce;
|
2425
2791
|
|
2426
2792
|
/** @deprecated since v12 will be removed in v14 */
|
2793
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2427
2794
|
export import debouncedReload = _utils.debouncedReload;
|
2428
2795
|
|
2429
2796
|
/** @deprecated since v12 will be removed in v14 */
|
2797
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2430
2798
|
export import deepClone = _utils.deepClone;
|
2431
2799
|
|
2432
2800
|
/** @deprecated since v12 will be removed in v14 */
|
2801
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2433
2802
|
export import diffObject = _utils.diffObject;
|
2434
2803
|
|
2435
2804
|
/** @deprecated since v12 will be removed in v14 */
|
2805
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2436
2806
|
export import objectsEqual = _utils.objectsEqual;
|
2437
2807
|
|
2438
2808
|
/** @deprecated since v12 will be removed in v14 */
|
2809
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2439
2810
|
export import duplicate = _utils.duplicate;
|
2440
2811
|
|
2441
2812
|
/** @deprecated since v12 will be removed in v14 */
|
2813
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2442
2814
|
export import isSubclass = _utils.isSubclass;
|
2443
2815
|
|
2444
2816
|
/** @deprecated since v12 will be removed in v14 */
|
2817
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2445
2818
|
export import getDefiningClass = _utils.getDefiningClass;
|
2446
2819
|
|
2447
2820
|
/** @deprecated since v12 will be removed in v14 */
|
2821
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2448
2822
|
export import encodeURL = _utils.encodeURL;
|
2449
2823
|
|
2450
2824
|
/** @deprecated since v12 will be removed in v14 */
|
2825
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2451
2826
|
export import expandObject = _utils.expandObject;
|
2452
2827
|
|
2453
2828
|
/** @deprecated since v12 will be removed in v14 */
|
2829
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2454
2830
|
export import filterObject = _utils.filterObject;
|
2455
2831
|
|
2456
2832
|
/** @deprecated since v12 will be removed in v14 */
|
2833
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2457
2834
|
export import flattenObject = _utils.flattenObject;
|
2458
2835
|
|
2459
2836
|
/** @deprecated since v12 will be removed in v14 */
|
2837
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2460
2838
|
export import getParentClasses = _utils.getParentClasses;
|
2461
2839
|
|
2462
2840
|
/** @deprecated since v12 will be removed in v14 */
|
2841
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2463
2842
|
export import getRoute = _utils.getRoute;
|
2464
2843
|
|
2465
2844
|
/** @deprecated since v12 will be removed in v14 */
|
2845
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2466
2846
|
export import getType = _utils.getType;
|
2467
2847
|
|
2468
2848
|
/** @deprecated since v12 will be removed in v14 */
|
2849
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2469
2850
|
export import hasProperty = _utils.hasProperty;
|
2470
2851
|
|
2471
2852
|
/** @deprecated since v12 will be removed in v14 */
|
2853
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2472
2854
|
export import getProperty = _utils.getProperty;
|
2473
2855
|
|
2474
2856
|
/** @deprecated since v12 will be removed in v14 */
|
2857
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2475
2858
|
export import setProperty = _utils.setProperty;
|
2476
2859
|
|
2477
2860
|
/** @deprecated since v12 will be removed in v14 */
|
2861
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2478
2862
|
export import invertObject = _utils.invertObject;
|
2479
2863
|
|
2480
2864
|
/** @deprecated since v12 will be removed in v14 */
|
2865
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2481
2866
|
export import isEmpty = _utils.isEmpty;
|
2482
2867
|
|
2483
2868
|
/** @deprecated since v12 will be removed in v14 */
|
2869
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2484
2870
|
export import mergeObject = _utils.mergeObject;
|
2485
2871
|
|
2486
2872
|
/** @deprecated since v12 will be removed in v14 */
|
2873
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2487
2874
|
export import parseS3URL = _utils.parseS3URL;
|
2488
2875
|
|
2489
2876
|
/** @deprecated since v12 will be removed in v14 */
|
2877
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2490
2878
|
export import randomID = _utils.randomID;
|
2491
2879
|
|
2492
2880
|
/** @deprecated since v12 will be removed in v14 */
|
2881
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2493
2882
|
export import timeSince = _utils.timeSince;
|
2494
2883
|
|
2495
2884
|
/** @deprecated since v12 will be removed in v14 */
|
2885
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2496
2886
|
export import formatFileSize = _utils.formatFileSize;
|
2497
2887
|
|
2498
2888
|
/** @deprecated since v12 will be removed in v14 */
|
2889
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2499
2890
|
export import parseUuid = _utils.parseUuid;
|
2500
2891
|
|
2501
2892
|
/* --- http --- */
|
2502
2893
|
|
2503
2894
|
/** @deprecated since v12 will be removed in v14 */
|
2895
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2504
2896
|
export import fetchWithTimeout = _utils.fetchWithTimeout;
|
2505
2897
|
|
2506
2898
|
/** @deprecated since v12 will be removed in v14 */
|
2899
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2507
2900
|
export import fetchJsonWithTimeout = _utils.fetchJsonWithTimeout;
|
2508
2901
|
|
2509
2902
|
/* --- logging --- */
|
2510
2903
|
|
2511
2904
|
/** @deprecated since v12 will be removed in v14 */
|
2905
|
+
// eslint-disable-next-line @typescript-eslint/no-deprecated
|
2512
2906
|
export import logCompatibilityWarning = _utils.logCompatibilityWarning;
|
2513
2907
|
}
|