ol 9.0.0-dev.1706800368740 → 9.0.0-dev.1706883666326

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.
@@ -47,7 +47,7 @@ export type FeatureClassOrArrayOfRenderFeatures<T extends import("../Feature.js"
47
47
  * *
48
48
  */
49
49
  export type VectorSourceOnSignature<Return> = import("../Observable").OnSignature<import("../Observable").EventTypes, import("../events/Event.js").default, Return> & import("../Observable").OnSignature<import("../ObjectEventType").Types, import("../Object").ObjectEvent, Return> & import("../Observable").OnSignature<import("./VectorEventType").VectorSourceEventTypes, VectorSourceEvent, Return> & import("../Observable").CombinedOnSignature<import("../Observable").EventTypes | import("../ObjectEventType").Types | import("./VectorEventType").VectorSourceEventTypes, Return>;
50
- export type Options<FeatureClass extends import("../Feature.js").FeatureLike = import("../Feature.js").default<import("../geom/Geometry.js").default>> = {
50
+ export type Options<FeatureType extends import("../Feature.js").FeatureLike> = {
51
51
  /**
52
52
  * Attributions.
53
53
  */
@@ -56,12 +56,12 @@ export type Options<FeatureClass extends import("../Feature.js").FeatureLike = i
56
56
  * Features. If provided as {@link module :ol/Collection~Collection}, the features in the source
57
57
  * and the collection will stay in sync.
58
58
  */
59
- features?: FeatureClass[] | Collection<FeatureClass> | undefined;
59
+ features?: FeatureType[] | Collection<FeatureType> | undefined;
60
60
  /**
61
61
  * The feature format used by the XHR
62
62
  * feature loader when `url` is set. Required if `url` is set, otherwise ignored.
63
63
  */
64
- format?: import("../format/Feature.js").default<typeof import("../Feature.js").default> | undefined;
64
+ format?: import("../format/Feature.js").default<import("../format/Feature.js").FeatureToFeatureClass<FeatureType>> | undefined;
65
65
  /**
66
66
  * The loader function used to load features, from a remote source for example.
67
67
  * If this is not set and `url` is set, the source will create and use an XHR
@@ -173,13 +173,13 @@ import Event from '../events/Event.js';
173
173
  * import("./VectorEventType").VectorSourceEventTypes, Return>} VectorSourceOnSignature
174
174
  */
175
175
  /**
176
- * @template {import("../Feature.js").FeatureLike} [FeatureClass=import("../Feature.js").default]
176
+ * @template {import("../Feature.js").FeatureLike} FeatureType
177
177
  * @typedef {Object} Options
178
178
  * @property {import("./Source.js").AttributionLike} [attributions] Attributions.
179
- * @property {Array<FeatureClass>|Collection<FeatureClass>} [features]
179
+ * @property {Array<FeatureType>|Collection<FeatureType>} [features]
180
180
  * Features. If provided as {@link module:ol/Collection~Collection}, the features in the source
181
181
  * and the collection will stay in sync.
182
- * @property {import("../format/Feature.js").default} [format] The feature format used by the XHR
182
+ * @property {import("../format/Feature.js").default<import("../format/Feature.js").FeatureToFeatureClass<FeatureType>>} [format] The feature format used by the XHR
183
183
  * feature loader when `url` is set. Required if `url` is set, otherwise ignored.
184
184
  * @property {import("../featureloader.js").FeatureLoader} [loader]
185
185
  * The loader function used to load features, from a remote source for example.
@@ -272,13 +272,13 @@ import Event from '../events/Event.js';
272
272
  *
273
273
  * @fires VectorSourceEvent
274
274
  * @api
275
- * @template {import("../Feature.js").FeatureLike} [FeatureClass=import("../Feature.js").default]
275
+ * @template {import("../Feature.js").FeatureLike} [FeatureType=import("../Feature.js").default]
276
276
  */
277
- declare class VectorSource<FeatureClass extends import("../Feature.js").FeatureLike = import("../Feature.js").default<import("../geom/Geometry.js").default>> extends Source {
277
+ declare class VectorSource<FeatureType extends import("../Feature.js").FeatureLike = import("../Feature.js").default<import("../geom/Geometry.js").default>> extends Source {
278
278
  /**
279
- * @param {Options<FeatureClass>} [options] Vector source options.
279
+ * @param {Options<FeatureType>} [options] Vector source options.
280
280
  */
281
- constructor(options?: Options<FeatureClass> | undefined);
281
+ constructor(options?: Options<FeatureType> | undefined);
282
282
  /***
283
283
  * @type {VectorSourceOnSignature<import("../events").EventsKey>}
284
284
  */
@@ -298,7 +298,7 @@ declare class VectorSource<FeatureClass extends import("../Feature.js").FeatureL
298
298
  private loader_;
299
299
  /**
300
300
  * @private
301
- * @type {import("../format/Feature.js").default|undefined}
301
+ * @type {import("../format/Feature.js").default<import('../format/Feature.js').FeatureToFeatureClass<FeatureType>>|undefined}
302
302
  */
303
303
  private format_;
304
304
  /**
@@ -318,7 +318,7 @@ declare class VectorSource<FeatureClass extends import("../Feature.js").FeatureL
318
318
  private strategy_;
319
319
  /**
320
320
  * @private
321
- * @type {RBush<FeatureClass>}
321
+ * @type {RBush<FeatureType>}
322
322
  */
323
323
  private featuresRtree_;
324
324
  /**
@@ -333,7 +333,7 @@ declare class VectorSource<FeatureClass extends import("../Feature.js").FeatureL
333
333
  private loadingExtentsCount_;
334
334
  /**
335
335
  * @private
336
- * @type {!Object<string, FeatureClass>}
336
+ * @type {!Object<string, FeatureType>}
337
337
  */
338
338
  private nullGeometryFeatures_;
339
339
  /**
@@ -345,7 +345,7 @@ declare class VectorSource<FeatureClass extends import("../Feature.js").FeatureL
345
345
  /**
346
346
  * A lookup of features by uid (using getUid(feature)).
347
347
  * @private
348
- * @type {!Object<string, FeatureClass>}
348
+ * @type {!Object<string, FeatureType>}
349
349
  */
350
350
  private uidIndex_;
351
351
  /**
@@ -355,7 +355,7 @@ declare class VectorSource<FeatureClass extends import("../Feature.js").FeatureL
355
355
  private featureChangeKeys_;
356
356
  /**
357
357
  * @private
358
- * @type {Collection<FeatureClass>|null}
358
+ * @type {Collection<FeatureType>|null}
359
359
  */
360
360
  private featuresCollection_;
361
361
  /**
@@ -367,25 +367,25 @@ declare class VectorSource<FeatureClass extends import("../Feature.js").FeatureL
367
367
  * Note: this also applies if an {@link module:ol/Collection~Collection} is used for features,
368
368
  * meaning that if a feature with a duplicate id is added in the collection, it will
369
369
  * be removed from it right away.
370
- * @param {FeatureClass} feature Feature to add.
370
+ * @param {FeatureType} feature Feature to add.
371
371
  * @api
372
372
  */
373
- addFeature(feature: FeatureClass): void;
373
+ addFeature(feature: FeatureType): void;
374
374
  /**
375
375
  * Add a feature without firing a `change` event.
376
- * @param {FeatureClass} feature Feature.
376
+ * @param {FeatureType} feature Feature.
377
377
  * @protected
378
378
  */
379
- protected addFeatureInternal(feature: FeatureClass): void;
379
+ protected addFeatureInternal(feature: FeatureType): void;
380
380
  /**
381
381
  * @param {string} featureKey Unique identifier for the feature.
382
- * @param {FeatureClass} feature The feature.
382
+ * @param {FeatureType} feature The feature.
383
383
  * @private
384
384
  */
385
385
  private setupChangeEvents_;
386
386
  /**
387
387
  * @param {string} featureKey Unique identifier for the feature.
388
- * @param {FeatureClass} feature The feature.
388
+ * @param {FeatureType} feature The feature.
389
389
  * @return {boolean} The feature is "valid", in the sense that it is also a
390
390
  * candidate for insertion into the Rtree.
391
391
  * @private
@@ -393,18 +393,18 @@ declare class VectorSource<FeatureClass extends import("../Feature.js").FeatureL
393
393
  private addToIndex_;
394
394
  /**
395
395
  * Add a batch of features to the source.
396
- * @param {Array<FeatureClass>} features Features to add.
396
+ * @param {Array<FeatureType>} features Features to add.
397
397
  * @api
398
398
  */
399
- addFeatures(features: Array<FeatureClass>): void;
399
+ addFeatures(features: Array<FeatureType>): void;
400
400
  /**
401
401
  * Add features without firing a `change` event.
402
- * @param {Array<FeatureClass>} features Features.
402
+ * @param {Array<FeatureType>} features Features.
403
403
  * @protected
404
404
  */
405
- protected addFeaturesInternal(features: Array<FeatureClass>): void;
405
+ protected addFeaturesInternal(features: Array<FeatureType>): void;
406
406
  /**
407
- * @param {!Collection<FeatureClass>} collection Collection.
407
+ * @param {!Collection<FeatureType>} collection Collection.
408
408
  * @private
409
409
  */
410
410
  private bindFeaturesCollection_;
@@ -420,13 +420,13 @@ declare class VectorSource<FeatureClass extends import("../Feature.js").FeatureL
420
420
  * stop and the function will return the same value.
421
421
  * Note: this function only iterate through the feature that have a defined geometry.
422
422
  *
423
- * @param {function(FeatureClass): T} callback Called with each feature
423
+ * @param {function(FeatureType): T} callback Called with each feature
424
424
  * on the source. Return a truthy value to stop iteration.
425
425
  * @return {T|undefined} The return value from the last call to the callback.
426
426
  * @template T
427
427
  * @api
428
428
  */
429
- forEachFeature<T>(callback: (arg0: FeatureClass) => T): T | undefined;
429
+ forEachFeature<T>(callback: (arg0: FeatureType) => T): T | undefined;
430
430
  /**
431
431
  * Iterate through all features whose geometries contain the provided
432
432
  * coordinate, calling the callback with each feature. If the callback returns
@@ -437,12 +437,12 @@ declare class VectorSource<FeatureClass extends import("../Feature.js").FeatureL
437
437
  * called for all features.
438
438
  *
439
439
  * @param {import("../coordinate.js").Coordinate} coordinate Coordinate.
440
- * @param {function(FeatureClass): T} callback Called with each feature
440
+ * @param {function(FeatureType): T} callback Called with each feature
441
441
  * whose goemetry contains the provided coordinate.
442
442
  * @return {T|undefined} The return value from the last call to the callback.
443
443
  * @template T
444
444
  */
445
- forEachFeatureAtCoordinateDirect<T_1>(coordinate: import("../coordinate.js").Coordinate, callback: (arg0: FeatureClass) => T_1): T_1 | undefined;
445
+ forEachFeatureAtCoordinateDirect<T_1>(coordinate: import("../coordinate.js").Coordinate, callback: (arg0: FeatureType) => T_1): T_1 | undefined;
446
446
  /**
447
447
  * Iterate through all features whose bounding box intersects the provided
448
448
  * extent (note that the feature's geometry may not intersect the extent),
@@ -456,13 +456,13 @@ declare class VectorSource<FeatureClass extends import("../Feature.js").FeatureL
456
456
  * features, equivalent to {@link module:ol/source/Vector~VectorSource#forEachFeature #forEachFeature()}.
457
457
  *
458
458
  * @param {import("../extent.js").Extent} extent Extent.
459
- * @param {function(FeatureClass): T} callback Called with each feature
459
+ * @param {function(FeatureType): T} callback Called with each feature
460
460
  * whose bounding box intersects the provided extent.
461
461
  * @return {T|undefined} The return value from the last call to the callback.
462
462
  * @template T
463
463
  * @api
464
464
  */
465
- forEachFeatureInExtent<T_2>(extent: import("../extent.js").Extent, callback: (arg0: FeatureClass) => T_2): T_2 | undefined;
465
+ forEachFeatureInExtent<T_2>(extent: import("../extent.js").Extent, callback: (arg0: FeatureType) => T_2): T_2 | undefined;
466
466
  /**
467
467
  * Iterate through all features whose geometry intersects the provided extent,
468
468
  * calling the callback with each feature. If the callback returns a "truthy"
@@ -472,28 +472,28 @@ declare class VectorSource<FeatureClass extends import("../Feature.js").FeatureL
472
472
  * {@link module:ol/source/Vector~VectorSource#forEachFeatureInExtent #forEachFeatureInExtent()} method instead.
473
473
  *
474
474
  * @param {import("../extent.js").Extent} extent Extent.
475
- * @param {function(FeatureClass): T} callback Called with each feature
475
+ * @param {function(FeatureType): T} callback Called with each feature
476
476
  * whose geometry intersects the provided extent.
477
477
  * @return {T|undefined} The return value from the last call to the callback.
478
478
  * @template T
479
479
  * @api
480
480
  */
481
- forEachFeatureIntersectingExtent<T_3>(extent: import("../extent.js").Extent, callback: (arg0: FeatureClass) => T_3): T_3 | undefined;
481
+ forEachFeatureIntersectingExtent<T_3>(extent: import("../extent.js").Extent, callback: (arg0: FeatureType) => T_3): T_3 | undefined;
482
482
  /**
483
483
  * Get the features collection associated with this source. Will be `null`
484
484
  * unless the source was configured with `useSpatialIndex` set to `false`, or
485
485
  * with an {@link module:ol/Collection~Collection} as `features`.
486
- * @return {Collection<FeatureClass>|null} The collection of features.
486
+ * @return {Collection<FeatureType>|null} The collection of features.
487
487
  * @api
488
488
  */
489
- getFeaturesCollection(): Collection<FeatureClass> | null;
489
+ getFeaturesCollection(): Collection<FeatureType> | null;
490
490
  /**
491
491
  * Get a snapshot of the features currently on the source in random order. The returned array
492
492
  * is a copy, the features are references to the features in the source.
493
- * @return {Array<FeatureClass>} Features.
493
+ * @return {Array<FeatureType>} Features.
494
494
  * @api
495
495
  */
496
- getFeatures(): Array<FeatureClass>;
496
+ getFeatures(): Array<FeatureType>;
497
497
  /**
498
498
  * Get all features whose geometry intersects the provided coordinate.
499
499
  * @param {import("../coordinate.js").Coordinate} coordinate Coordinate.
@@ -512,10 +512,10 @@ declare class VectorSource<FeatureClass extends import("../Feature.js").FeatureL
512
512
  * @param {import("../extent.js").Extent} extent Extent.
513
513
  * @param {import("../proj/Projection.js").default} [projection] Include features
514
514
  * where `extent` exceeds the x-axis bounds of `projection` and wraps around the world.
515
- * @return {Array<FeatureClass>} Features.
515
+ * @return {Array<FeatureType>} Features.
516
516
  * @api
517
517
  */
518
- getFeaturesInExtent(extent: import("../extent.js").Extent, projection?: import("../proj/Projection.js").default | undefined): Array<FeatureClass>;
518
+ getFeaturesInExtent(extent: import("../extent.js").Extent, projection?: import("../proj/Projection.js").default | undefined): Array<FeatureType>;
519
519
  /**
520
520
  * Get the closest feature to the provided coordinate.
521
521
  *
@@ -523,13 +523,13 @@ declare class VectorSource<FeatureClass extends import("../Feature.js").FeatureL
523
523
  * `useSpatialIndex` set to `false` and the features in this source are of type
524
524
  * {@link module:ol/Feature~Feature}.
525
525
  * @param {import("../coordinate.js").Coordinate} coordinate Coordinate.
526
- * @param {function(FeatureClass):boolean} [filter] Feature filter function.
526
+ * @param {function(FeatureType):boolean} [filter] Feature filter function.
527
527
  * The filter function will receive one argument, the {@link module:ol/Feature~Feature feature}
528
528
  * and it should return a boolean value. By default, no filtering is made.
529
- * @return {FeatureClass} Closest feature.
529
+ * @return {FeatureType} Closest feature.
530
530
  * @api
531
531
  */
532
- getClosestFeatureToCoordinate(coordinate: import("../coordinate.js").Coordinate, filter?: ((arg0: FeatureClass) => boolean) | undefined): FeatureClass;
532
+ getClosestFeatureToCoordinate(coordinate: import("../coordinate.js").Coordinate, filter?: ((arg0: FeatureType) => boolean) | undefined): FeatureType;
533
533
  /**
534
534
  * Get the extent of the features currently in the source.
535
535
  *
@@ -550,24 +550,24 @@ declare class VectorSource<FeatureClass extends import("../Feature.js").FeatureL
550
550
  * `source.getFeatureById(2)` will return a feature with id `'2'` or `2`.
551
551
  *
552
552
  * @param {string|number} id Feature identifier.
553
- * @return {FeatureClassOrArrayOfRenderFeatures<FeatureClass>|null} The feature (or `null` if not found).
553
+ * @return {FeatureClassOrArrayOfRenderFeatures<FeatureType>|null} The feature (or `null` if not found).
554
554
  * @api
555
555
  */
556
- getFeatureById(id: string | number): FeatureClassOrArrayOfRenderFeatures<FeatureClass> | null;
556
+ getFeatureById(id: string | number): FeatureClassOrArrayOfRenderFeatures<FeatureType> | null;
557
557
  /**
558
558
  * Get a feature by its internal unique identifier (using `getUid`).
559
559
  *
560
560
  * @param {string} uid Feature identifier.
561
- * @return {FeatureClass|null} The feature (or `null` if not found).
561
+ * @return {FeatureType|null} The feature (or `null` if not found).
562
562
  */
563
- getFeatureByUid(uid: string): FeatureClass | null;
563
+ getFeatureByUid(uid: string): FeatureType | null;
564
564
  /**
565
565
  * Get the format associated with this source.
566
566
  *
567
- * @return {import("../format/Feature.js").default|undefined} The feature format.
567
+ * @return {import("../format/Feature.js").default<import('../format/Feature.js').FeatureToFeatureClass<FeatureType>>|undefined} The feature format.
568
568
  * @api
569
569
  */
570
- getFormat(): import("../format/Feature.js").default | undefined;
570
+ getFormat(): import("../format/Feature.js").default<import('../format/Feature.js').FeatureToFeatureClass<FeatureType>> | undefined;
571
571
  /**
572
572
  * @return {boolean} The source can have overlapping geometries.
573
573
  */
@@ -586,11 +586,11 @@ declare class VectorSource<FeatureClass extends import("../Feature.js").FeatureL
586
586
  private handleFeatureChange_;
587
587
  /**
588
588
  * Returns true if the feature is contained within the source.
589
- * @param {FeatureClass} feature Feature.
589
+ * @param {FeatureType} feature Feature.
590
590
  * @return {boolean} Has feature.
591
591
  * @api
592
592
  */
593
- hasFeature(feature: FeatureClass): boolean;
593
+ hasFeature(feature: FeatureType): boolean;
594
594
  /**
595
595
  * @return {boolean} Is empty.
596
596
  */
@@ -611,22 +611,22 @@ declare class VectorSource<FeatureClass extends import("../Feature.js").FeatureL
611
611
  * Remove a single feature from the source. If you want to remove all features
612
612
  * at once, use the {@link module:ol/source/Vector~VectorSource#clear #clear()} method
613
613
  * instead.
614
- * @param {FeatureClass} feature Feature to remove.
614
+ * @param {FeatureType} feature Feature to remove.
615
615
  * @api
616
616
  */
617
- removeFeature(feature: FeatureClass): void;
617
+ removeFeature(feature: FeatureType): void;
618
618
  /**
619
619
  * Remove feature without firing a `change` event.
620
- * @param {FeatureClass} feature Feature.
621
- * @return {FeatureClass|undefined} The removed feature
620
+ * @param {FeatureType} feature Feature.
621
+ * @return {FeatureType|undefined} The removed feature
622
622
  * (or undefined if the feature was not found).
623
623
  * @protected
624
624
  */
625
- protected removeFeatureInternal(feature: FeatureClass): FeatureClass | undefined;
625
+ protected removeFeatureInternal(feature: FeatureType): FeatureType | undefined;
626
626
  /**
627
627
  * Remove a feature from the id index. Called internally when the feature id
628
628
  * may have changed.
629
- * @param {FeatureClass} feature The feature.
629
+ * @param {FeatureType} feature The feature.
630
630
  * @return {boolean} Removed the feature from the index.
631
631
  * @private
632
632
  */
@@ -1 +1 @@
1
- {"version":3,"file":"Vector.d.ts","sourceRoot":"","sources":["Vector.js"],"names":[],"mappings":"AAuBA;;;;;;;GAOG;AAEH;;;;;GAKG;AACH;IACE;;;;OAIG;IACH,kBAJW,MAAM,6EAoBhB;IAbC;;;;OAIG;IACH,SAHU,YAAY,GAAC,SAAS,CAGV;IAEtB;;;;OAIG;IACH,UAHU,MAAM,YAAY,CAAC,GAAC,SAAS,CAGf;CAE3B;;;;;;;qCAjCqB,OAAO,cAAc,EAAE,MAAM,QAAE,MAAM,QAAE,OAAO,uBAAuB,EAAE,OAAO,KAAG,MAAM,OAAO,cAAc,EAAE,MAAM,CAAC;;;;0KAqC9H,CAAC,SAAS,aAAa,GAAG,CAAC,GAAC,MAAM,CAAC,CAAC,GAAG,CAAC;;;;8CAKxC,OAAO,eAAe,EAAE,WAAW,CAAC,OAAO,eAAe,EAAE,UAAU,EAAE,OAAO,oBAAoB,EAAE,OAAO,EAAE,MAAM,CAAC,GACjI,OAAW,eAAe,EAAE,WAAW,CAAC,OAAO,oBAAoB,EAAE,KAAK,EAAE,OAAO,WAAW,EAAE,WAAW,EAAE,MAAM,CAAC,GACpH,OAAW,eAAe,EAAE,WAAW,CAAC,OAAO,mBAAmB,EAAE,sBAAsB,EAAE,iBAAiB,EAAE,MAAM,CAAC,GACtH,OAAW,eAAe,EAAE,mBAAmB,CAAC,OAAO,eAAe,EAAE,UAAU,GAAC,OAAO,oBAAoB,EAAE,KAAK,GACrH,OAAa,mBAAmB,EAAE,sBAAsB,EAAE,MAAM,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBApEhD,oBAAoB;AAyDtC;;;GAGG;AAEH;;;;;;;GAOG;AAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2FG;AAEH;;;;;;;;;GASG;AACH;IACE;;OAEG;IACH,yDA4IC;IAjIC;;OAEG;IACH,IAFU,wBAAwB,OAAO,WAAW,EAAE,SAAS,CAAC,CAEzD;IAEP;;OAEG;IACH,MAFU,wBAAwB,OAAO,WAAW,EAAE,SAAS,CAAC,CAEvD;IAET;;OAEG;IACH,IAFU,wBAAwB,IAAI,CAAC,CAEhC;IAEP;;;OAGG;IACH,gBAAmB;IAEnB;;;OAGG;IACH,gBAA6B;IAE7B;;;OAGG;IACH,kBAAyE;IAEzE;;;OAGG;IACH,aAAuB;IAavB;;;OAGG;IACH,kBACiE;IAKjE;;;OAGG;IACH,uBAA0D;IAE1D;;;OAGG;IACH,4BAAsC;IAEtC;;;OAGG;IACH,6BAA6B;IAE7B;;;OAGG;IACH,8BAA+B;IAE/B;;;;OAIG;IACH,iBAAkB;IAElB;;;;OAIG;IACH,kBAAmB;IAEnB;;;OAGG;IACH,2BAA4B;IAE5B;;;OAGG;IACH,4BAA+B;IAuBjC;;;;;;;;;;;OAWG;IACH,oBAHW,YAAY,QAMtB;IAED;;;;OAIG;IACH,sCAHW,YAAY,QA4BtB;IAED;;;;OAIG;IACH,2BAaC;IAED;;;;;;OAMG;IACH,oBA6BC;IAED;;;;OAIG;IACH,sBAHW,MAAM,YAAY,CAAC,QAM7B;IAED;;;;OAIG;IACH,wCAHW,MAAM,YAAY,CAAC,QA2C7B;IAED;;;OAGG;IACH,gCAuDC;IAED;;;;OAIG;IACH,wCAkCC;IAED;;;;;;;;;;;OAWG;IACH,mCANoB,YAAY,uBAa/B;IAED;;;;;;;;;;;;;;OAcG;IACH,kDANW,OAAO,kBAAkB,EAAE,UAAU,mBAC5B,YAAY,2BAiB/B;IAED;;;;;;;;;;;;;;;;;;OAkBG;IACH,oCAPW,OAAO,cAAc,EAAE,MAAM,mBACpB,YAAY,2BAa/B;IAED;;;;;;;;;;;;;;OAcG;IACH,8CAPW,OAAO,cAAc,EAAE,MAAM,mBACpB,YAAY,2BA0B/B;IAED;;;;;;OAMG;IACH,yBAHY,WAAW,YAAY,CAAC,GAAC,IAAI,CAKxC;IAED;;;;;OAKG;IACH,eAHY,MAAM,YAAY,CAAC,CAc9B;IAED;;;;;OAKG;IACH,oCAJW,OAAO,kBAAkB,EAAE,UAAU,GACpC,MAAM,OAAO,eAAe,EAAE,OAAO,CAAC,CASjD;IAED;;;;;;;;;;;;;OAaG;IACH,4BANW,OAAO,cAAc,EAAE,MAAM,qEAG5B,MAAM,YAAY,CAAC,CAqB9B;IAED;;;;;;;;;;;;OAYG;IACH,0CAPW,OAAO,kBAAkB,EAAE,UAAU,mBAC5B,YAAY,KAAE,OAAO,gBAG7B,YAAY,CA+CvB;IAED;;;;;;;;;OASG;IACH,+DAHY,OAAO,cAAc,EAAE,MAAM,CAKxC;IAED;;;;;;;;;;;OAWG;IACH,mBAJW,MAAM,GAAC,MAAM,GACZ,oCAAoC,YAAY,CAAC,GAAC,IAAI,CAUjE;IAED;;;;;OAKG;IACH,qBAHW,MAAM,GACL,YAAY,GAAC,IAAI,CAK5B;IAED;;;;;OAKG;IACH,aAHY,OAAO,sBAAsB,EAAE,OAAO,GAAC,SAAS,CAK3D;IAED;;OAEG;IACH,eAFY,OAAO,CAIlB;IAED;;;;;OAKG;IACH,UAHY,MAAM,GAAC,OAAO,qBAAqB,EAAE,kBAAkB,GAAC,SAAS,CAK5E;IAED;;;OAGG;IACH,6BAuCC;IAED;;;;;OAKG;IACH,oBAJW,YAAY,GACX,OAAO,CASlB;IAED;;OAEG;IACH,WAFY,OAAO,CAYlB;IAED;;;;OAIG;IACH,qBAJW,OAAO,cAAc,EAAE,MAAM,cAC7B,MAAM,cACN,OAAO,uBAAuB,EAAE,OAAO,QAiDjD;IAQD;;;;OAIG;IACH,2BAHW,OAAO,cAAc,EAAE,MAAM,QAevC;IAED;;;;;;OAMG;IACH,uBAHW,YAAY,QAmBtB;IAED;;;;;;OAMG;IACH,yCALW,YAAY,GACX,YAAY,GAAC,SAAS,CAqBjC;IAED;;;;;;OAMG;IACH,2BAiBC;IAED;;;;;OAKG;IACH,kBAHW,OAAO,qBAAqB,EAAE,aAAa,QAKrD;IAED;;;;OAIG;IACH,YAHW,MAAM,GAAC,OAAO,qBAAqB,EAAE,kBAAkB,QAOjE;CACF;0BAroCyB,sBAAsB;uBANzB,kBAAkB;mBAOtB,aAAa"}
1
+ {"version":3,"file":"Vector.d.ts","sourceRoot":"","sources":["Vector.js"],"names":[],"mappings":"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"}