@revideo/2d 0.4.6 → 0.4.7-alpha.1022

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.
Files changed (132) hide show
  1. package/editor/editor/tsconfig.build.tsbuildinfo +1 -1
  2. package/editor/index.js +380 -151
  3. package/editor/index.js.map +1 -1
  4. package/lib/code/CodeCursor.d.ts +74 -74
  5. package/lib/code/CodeDiffer.d.ts +21 -16
  6. package/lib/code/CodeDiffer.js +39 -41
  7. package/lib/code/CodeFragment.d.ts +16 -8
  8. package/lib/code/CodeFragment.js +36 -36
  9. package/lib/code/CodeHighlighter.d.ts +59 -59
  10. package/lib/code/CodeHighlighter.js +1 -1
  11. package/lib/code/CodeMetrics.d.ts +12 -8
  12. package/lib/code/CodeMetrics.js +26 -24
  13. package/lib/code/CodeRange.d.ts +21 -5
  14. package/lib/code/CodeRange.js +131 -124
  15. package/lib/code/CodeScope.d.ts +18 -8
  16. package/lib/code/CodeSelection.d.ts +9 -4
  17. package/lib/code/CodeSelection.js +8 -8
  18. package/lib/code/CodeSignal.d.ts +74 -47
  19. package/lib/code/CodeTokenizer.d.ts +1 -1
  20. package/lib/code/CodeTokenizer.js +41 -41
  21. package/lib/code/DefaultHighlightStyle.d.ts +2 -2
  22. package/lib/code/DefaultHighlightStyle.js +96 -96
  23. package/lib/code/LezerHighlighter.d.ts +21 -19
  24. package/lib/code/diff.d.ts +12 -9
  25. package/lib/code/diff.js +218 -205
  26. package/lib/code/extractRange.d.ts +7 -4
  27. package/lib/code/extractRange.js +79 -71
  28. package/lib/code/index.d.ts +1 -1
  29. package/lib/code/index.js +1 -1
  30. package/lib/components/Audio.d.ts +11 -11
  31. package/lib/components/Bezier.d.ts +18 -18
  32. package/lib/components/Circle.d.ts +95 -90
  33. package/lib/components/Code.d.ts +244 -211
  34. package/lib/components/CodeBlock.d.ts +1 -1
  35. package/lib/components/CubicBezier.d.ts +36 -36
  36. package/lib/components/Curve.d.ts +208 -198
  37. package/lib/components/Grid.d.ts +47 -42
  38. package/lib/components/HlsVideo.d.ts +62 -0
  39. package/lib/components/HlsVideo.d.ts.map +1 -0
  40. package/lib/components/HlsVideo.js +169 -0
  41. package/lib/components/Icon.d.ts +55 -50
  42. package/lib/components/Img.d.ts +86 -79
  43. package/lib/components/Knot.d.ts +97 -78
  44. package/lib/components/Latex.d.ts +12 -12
  45. package/lib/components/Layout.d.ts +455 -413
  46. package/lib/components/Line.d.ts +61 -49
  47. package/lib/components/Media.d.ts +37 -37
  48. package/lib/components/Node.d.ts +1 -1
  49. package/lib/components/Path.d.ts +1 -1
  50. package/lib/components/Polygon.d.ts +60 -55
  51. package/lib/components/QuadBezier.d.ts +29 -29
  52. package/lib/components/Ray.d.ts +28 -28
  53. package/lib/components/Rect.d.ts +115 -108
  54. package/lib/components/SVG.d.ts +1 -1
  55. package/lib/components/Shape.d.ts +1 -1
  56. package/lib/components/Spline.d.ts +46 -40
  57. package/lib/components/Txt.d.ts +55 -44
  58. package/lib/components/TxtLeaf.d.ts +20 -16
  59. package/lib/components/Video.d.ts +1 -1
  60. package/lib/components/Video.d.ts.map +1 -1
  61. package/lib/components/Video.js +5 -1
  62. package/lib/components/View2D.d.ts +22 -22
  63. package/lib/components/index.d.ts +1 -1
  64. package/lib/components/types.d.ts +22 -9
  65. package/lib/curves/ArcSegment.d.ts +36 -24
  66. package/lib/curves/CircleSegment.d.ts +26 -16
  67. package/lib/curves/CubicBezierSegment.d.ts +18 -13
  68. package/lib/curves/CurveDrawingInfo.d.ts +9 -9
  69. package/lib/curves/CurvePoint.d.ts +13 -13
  70. package/lib/curves/CurveProfile.d.ts +5 -5
  71. package/lib/curves/CurveProfile.js +1 -1
  72. package/lib/curves/KnotInfo.d.ts +8 -8
  73. package/lib/curves/LineSegment.d.ts +19 -14
  74. package/lib/curves/Polynomial.d.ts +110 -110
  75. package/lib/curves/Polynomial2D.d.ts +20 -20
  76. package/lib/curves/PolynomialSegment.d.ts +42 -37
  77. package/lib/curves/QuadBezierSegment.d.ts +12 -12
  78. package/lib/curves/Segment.d.ts +12 -7
  79. package/lib/curves/UniformPolynomialCurveSampler.d.ts +34 -34
  80. package/lib/curves/createCurveProfileLerp.d.ts +17 -6
  81. package/lib/curves/getBezierSplineProfile.d.ts +8 -4
  82. package/lib/curves/getCircleProfile.d.ts +10 -4
  83. package/lib/curves/getPathProfile.d.ts +2 -2
  84. package/lib/curves/getPointAtDistance.d.ts +7 -4
  85. package/lib/curves/getPolylineProfile.d.ts +8 -4
  86. package/lib/curves/getRectProfile.d.ts +9 -4
  87. package/lib/curves/index.d.ts +1 -1
  88. package/lib/curves/index.js +1 -1
  89. package/lib/decorators/canvasStyleSignal.d.ts +3 -3
  90. package/lib/decorators/colorSignal.d.ts +1 -1
  91. package/lib/decorators/compound.d.ts +4 -2
  92. package/lib/decorators/computed.d.ts +1 -1
  93. package/lib/decorators/defaultStyle.d.ts +5 -2
  94. package/lib/decorators/filtersSignal.d.ts +28 -8
  95. package/lib/decorators/index.d.ts +1 -1
  96. package/lib/decorators/index.js +1 -1
  97. package/lib/decorators/initializers.d.ts +5 -2
  98. package/lib/decorators/initializers.js +18 -19
  99. package/lib/decorators/nodeName.d.ts +1 -1
  100. package/lib/decorators/nodeName.js +4 -4
  101. package/lib/decorators/signal.d.ts +40 -20
  102. package/lib/decorators/spacingSignal.d.ts +1 -1
  103. package/lib/decorators/vector2Signal.d.ts +13 -7
  104. package/lib/index.d.ts +1 -1
  105. package/lib/index.js +1 -1
  106. package/lib/jsx-dev-runtime.d.ts +3 -3
  107. package/lib/jsx-dev-runtime.js +3 -3
  108. package/lib/jsx-runtime.d.ts +19 -9
  109. package/lib/jsx-runtime.js +18 -18
  110. package/lib/partials/Filter.d.ts +24 -16
  111. package/lib/partials/Gradient.d.ts +30 -24
  112. package/lib/partials/Pattern.d.ts +14 -9
  113. package/lib/partials/ShaderConfig.d.ts +81 -74
  114. package/lib/partials/index.d.ts +1 -1
  115. package/lib/partials/index.js +1 -1
  116. package/lib/partials/types.d.ts +19 -6
  117. package/lib/scenes/Scene2D.d.ts +42 -23
  118. package/lib/scenes/index.d.ts +1 -1
  119. package/lib/scenes/index.js +1 -1
  120. package/lib/scenes/makeScene2D.d.ts +7 -5
  121. package/lib/scenes/useScene2D.d.ts +2 -2
  122. package/lib/tsconfig.build.tsbuildinfo +1 -1
  123. package/lib/tsconfig.tsbuildinfo +1 -0
  124. package/lib/utils/diff.d.ts +25 -18
  125. package/lib/utils/diff.js +84 -87
  126. package/lib/utils/index.d.ts +1 -1
  127. package/lib/utils/index.js +1 -1
  128. package/lib/utils/is.d.ts +4 -2
  129. package/lib/utils/is.js +2 -2
  130. package/lib/utils/makeSignalExtensions.d.ts +11 -4
  131. package/package.json +5 -5
  132. package/src/lib/components/Video.ts +7 -2
@@ -1,39 +1,44 @@
1
- import { BBox, Vector2 } from '@revideo/core';
2
- import { CurvePoint } from './CurvePoint';
3
- import { Polynomial2D } from './Polynomial2D';
4
- import { Segment } from './Segment';
5
- import { UniformPolynomialCurveSampler } from './UniformPolynomialCurveSampler';
1
+ import {BBox, Vector2} from '@revideo/core';
2
+ import {CurvePoint} from './CurvePoint';
3
+ import {Polynomial2D} from './Polynomial2D';
4
+ import {Segment} from './Segment';
5
+ import {UniformPolynomialCurveSampler} from './UniformPolynomialCurveSampler';
6
6
  export declare abstract class PolynomialSegment extends Segment {
7
- protected readonly curve: Polynomial2D;
8
- protected readonly length: number;
9
- protected readonly pointSampler: UniformPolynomialCurveSampler;
10
- get arcLength(): number;
11
- abstract get points(): Vector2[];
12
- protected constructor(curve: Polynomial2D, length: number);
13
- getBBox(): BBox;
14
- /**
15
- * Evaluate the polynomial at the given t value.
16
- *
17
- * @param t - The t value at which to evaluate the curve.
18
- */
19
- eval(t: number): CurvePoint;
20
- /**
21
- * Split the curve into two separate polynomials at the given t value. The two
22
- * resulting curves form the same overall shape as the original curve.
23
- *
24
- * @param t - The t value at which to split the curve.
25
- */
26
- abstract split(t: number): [PolynomialSegment, PolynomialSegment];
27
- getPoint(distance: number): CurvePoint;
28
- transformPoints(matrix: DOMMatrix): Vector2[];
29
- /**
30
- * Return the tangent of the point that sits at the provided t value on the
31
- * curve.
32
- *
33
- * @param t - The t value at which to evaluate the curve.
34
- */
35
- tangent(t: number): Vector2;
36
- draw(context: CanvasRenderingContext2D | Path2D, start?: number, end?: number, move?: boolean): [CurvePoint, CurvePoint];
37
- protected abstract doDraw(context: CanvasRenderingContext2D | Path2D): void;
7
+ protected readonly curve: Polynomial2D;
8
+ protected readonly length: number;
9
+ protected readonly pointSampler: UniformPolynomialCurveSampler;
10
+ get arcLength(): number;
11
+ abstract get points(): Vector2[];
12
+ protected constructor(curve: Polynomial2D, length: number);
13
+ getBBox(): BBox;
14
+ /**
15
+ * Evaluate the polynomial at the given t value.
16
+ *
17
+ * @param t - The t value at which to evaluate the curve.
18
+ */
19
+ eval(t: number): CurvePoint;
20
+ /**
21
+ * Split the curve into two separate polynomials at the given t value. The two
22
+ * resulting curves form the same overall shape as the original curve.
23
+ *
24
+ * @param t - The t value at which to split the curve.
25
+ */
26
+ abstract split(t: number): [PolynomialSegment, PolynomialSegment];
27
+ getPoint(distance: number): CurvePoint;
28
+ transformPoints(matrix: DOMMatrix): Vector2[];
29
+ /**
30
+ * Return the tangent of the point that sits at the provided t value on the
31
+ * curve.
32
+ *
33
+ * @param t - The t value at which to evaluate the curve.
34
+ */
35
+ tangent(t: number): Vector2;
36
+ draw(
37
+ context: CanvasRenderingContext2D | Path2D,
38
+ start?: number,
39
+ end?: number,
40
+ move?: boolean,
41
+ ): [CurvePoint, CurvePoint];
42
+ protected abstract doDraw(context: CanvasRenderingContext2D | Path2D): void;
38
43
  }
39
- //# sourceMappingURL=PolynomialSegment.d.ts.map
44
+ //# sourceMappingURL=PolynomialSegment.d.ts.map
@@ -1,17 +1,17 @@
1
- import { Vector2 } from '@revideo/core';
2
- import { PolynomialSegment } from './PolynomialSegment';
1
+ import {Vector2} from '@revideo/core';
2
+ import {PolynomialSegment} from './PolynomialSegment';
3
3
  /**
4
4
  * A spline segment representing a quadratic Bézier curve.
5
5
  */
6
6
  export declare class QuadBezierSegment extends PolynomialSegment {
7
- readonly p0: Vector2;
8
- readonly p1: Vector2;
9
- readonly p2: Vector2;
10
- private static el;
11
- get points(): Vector2[];
12
- constructor(p0: Vector2, p1: Vector2, p2: Vector2);
13
- split(t: number): [PolynomialSegment, PolynomialSegment];
14
- protected static getLength(p0: Vector2, p1: Vector2, p2: Vector2): number;
15
- protected doDraw(context: CanvasRenderingContext2D | Path2D): void;
7
+ readonly p0: Vector2;
8
+ readonly p1: Vector2;
9
+ readonly p2: Vector2;
10
+ private static el;
11
+ get points(): Vector2[];
12
+ constructor(p0: Vector2, p1: Vector2, p2: Vector2);
13
+ split(t: number): [PolynomialSegment, PolynomialSegment];
14
+ protected static getLength(p0: Vector2, p1: Vector2, p2: Vector2): number;
15
+ protected doDraw(context: CanvasRenderingContext2D | Path2D): void;
16
16
  }
17
- //# sourceMappingURL=QuadBezierSegment.d.ts.map
17
+ //# sourceMappingURL=QuadBezierSegment.d.ts.map
@@ -1,9 +1,14 @@
1
- import { Vector2 } from '@revideo/core';
2
- import { CurvePoint } from './CurvePoint';
1
+ import {Vector2} from '@revideo/core';
2
+ import {CurvePoint} from './CurvePoint';
3
3
  export declare abstract class Segment {
4
- abstract readonly points: Vector2[];
5
- abstract draw(context: CanvasRenderingContext2D | Path2D, start: number, end: number, move: boolean): [CurvePoint, CurvePoint];
6
- abstract getPoint(distance: number): CurvePoint;
7
- abstract get arcLength(): number;
4
+ abstract readonly points: Vector2[];
5
+ abstract draw(
6
+ context: CanvasRenderingContext2D | Path2D,
7
+ start: number,
8
+ end: number,
9
+ move: boolean,
10
+ ): [CurvePoint, CurvePoint];
11
+ abstract getPoint(distance: number): CurvePoint;
12
+ abstract get arcLength(): number;
8
13
  }
9
- //# sourceMappingURL=Segment.d.ts.map
14
+ //# sourceMappingURL=Segment.d.ts.map
@@ -1,5 +1,5 @@
1
- import { CurvePoint } from './CurvePoint';
2
- import { PolynomialSegment } from './PolynomialSegment';
1
+ import {CurvePoint} from './CurvePoint';
2
+ import {PolynomialSegment} from './PolynomialSegment';
3
3
  /**
4
4
  * Class to uniformly sample points on a given polynomial curve.
5
5
  *
@@ -8,36 +8,36 @@ import { PolynomialSegment } from './PolynomialSegment';
8
8
  * re-parameterizes the curve by arclength.
9
9
  */
10
10
  export declare class UniformPolynomialCurveSampler {
11
- private readonly curve;
12
- private sampledDistances;
13
- /**
14
- * @param curve - The curve to sample
15
- * @param samples - How many points to sample from the provided curve. The
16
- * more points get sampled, the higher the resolution–and
17
- * therefore precision–of the sampler.
18
- */
19
- constructor(curve: PolynomialSegment, samples?: number);
20
- /**
21
- * Discard all previously sampled points and resample the provided number of
22
- * points from the curve.
23
- *
24
- * @param samples - The number of points to sample.
25
- */
26
- resample(samples: number): void;
27
- /**
28
- * Return the point at the provided distance along the sampled curve's
29
- * arclength.
30
- *
31
- * @param distance - The distance along the curve's arclength for which to
32
- * retrieve the point.
33
- */
34
- pointAtDistance(distance: number): CurvePoint;
35
- /**
36
- * Return the t value for the point at the provided distance along the sampled
37
- * curve's arc length.
38
- *
39
- * @param distance - The distance along the arclength
40
- */
41
- distanceToT(distance: number): number;
11
+ private readonly curve;
12
+ private sampledDistances;
13
+ /**
14
+ * @param curve - The curve to sample
15
+ * @param samples - How many points to sample from the provided curve. The
16
+ * more points get sampled, the higher the resolution–and
17
+ * therefore precision–of the sampler.
18
+ */
19
+ constructor(curve: PolynomialSegment, samples?: number);
20
+ /**
21
+ * Discard all previously sampled points and resample the provided number of
22
+ * points from the curve.
23
+ *
24
+ * @param samples - The number of points to sample.
25
+ */
26
+ resample(samples: number): void;
27
+ /**
28
+ * Return the point at the provided distance along the sampled curve's
29
+ * arclength.
30
+ *
31
+ * @param distance - The distance along the curve's arclength for which to
32
+ * retrieve the point.
33
+ */
34
+ pointAtDistance(distance: number): CurvePoint;
35
+ /**
36
+ * Return the t value for the point at the provided distance along the sampled
37
+ * curve's arc length.
38
+ *
39
+ * @param distance - The distance along the arclength
40
+ */
41
+ distanceToT(distance: number): number;
42
42
  }
43
- //# sourceMappingURL=UniformPolynomialCurveSampler.d.ts.map
43
+ //# sourceMappingURL=UniformPolynomialCurveSampler.d.ts.map
@@ -1,5 +1,5 @@
1
- import { Vector2 } from '@revideo/core';
2
- import { CurveProfile } from './CurveProfile';
1
+ import {Vector2} from '@revideo/core';
2
+ import {CurveProfile} from './CurveProfile';
3
3
  /**
4
4
  * Calculate polygon perimeter
5
5
  * @param points - polygon points
@@ -13,7 +13,11 @@ export declare function polygonLength(points: Vector2[]): number;
13
13
  * @param offset - offset for first polygon points
14
14
  * @returns
15
15
  */
16
- export declare function calculateLerpDistance(points: Vector2[], reference: Vector2[], offset: number): number;
16
+ export declare function calculateLerpDistance(
17
+ points: Vector2[],
18
+ reference: Vector2[],
19
+ offset: number,
20
+ ): number;
17
21
  /**
18
22
  * Interpolate between two polygon points.
19
23
  * @param from - source polygon points
@@ -21,12 +25,19 @@ export declare function calculateLerpDistance(points: Vector2[], reference: Vect
21
25
  * @param value - interpolation progress
22
26
  * @returns - new polygon points
23
27
  */
24
- export declare function polygonPointsLerp(from: Vector2[], to: Vector2[], value: number): Vector2[];
28
+ export declare function polygonPointsLerp(
29
+ from: Vector2[],
30
+ to: Vector2[],
31
+ value: number,
32
+ ): Vector2[];
25
33
  /**
26
34
  * Create interpolator to tween between two curve
27
35
  * @param a - source curve
28
36
  * @param b - target curve
29
37
  * @returns - curve interpolator
30
38
  */
31
- export declare function createCurveProfileLerp(a: CurveProfile, b: CurveProfile): (progress: number) => CurveProfile;
32
- //# sourceMappingURL=createCurveProfileLerp.d.ts.map
39
+ export declare function createCurveProfileLerp(
40
+ a: CurveProfile,
41
+ b: CurveProfile,
42
+ ): (progress: number) => CurveProfile;
43
+ //# sourceMappingURL=createCurveProfileLerp.d.ts.map
@@ -1,5 +1,5 @@
1
- import { CurveProfile } from './CurveProfile';
2
- import { KnotInfo } from './KnotInfo';
1
+ import {CurveProfile} from './CurveProfile';
2
+ import {KnotInfo} from './KnotInfo';
3
3
  /**
4
4
  * Calculate the curve profile of a spline based on a set of knots.
5
5
  *
@@ -8,5 +8,9 @@ import { KnotInfo } from './KnotInfo';
8
8
  * @param smoothness - The desired smoothness of the spline when using auto
9
9
  * calculated handles.
10
10
  */
11
- export declare function getBezierSplineProfile(knots: KnotInfo[], closed: boolean, smoothness: number): CurveProfile;
12
- //# sourceMappingURL=getBezierSplineProfile.d.ts.map
11
+ export declare function getBezierSplineProfile(
12
+ knots: KnotInfo[],
13
+ closed: boolean,
14
+ smoothness: number,
15
+ ): CurveProfile;
16
+ //# sourceMappingURL=getBezierSplineProfile.d.ts.map
@@ -1,4 +1,10 @@
1
- import { Vector2 } from '@revideo/core';
2
- import { CurveProfile } from './CurveProfile';
3
- export declare function getCircleProfile(size: Vector2, startAngle: number, endAngle: number, closed: boolean, counterclockwise?: boolean): CurveProfile;
4
- //# sourceMappingURL=getCircleProfile.d.ts.map
1
+ import {Vector2} from '@revideo/core';
2
+ import {CurveProfile} from './CurveProfile';
3
+ export declare function getCircleProfile(
4
+ size: Vector2,
5
+ startAngle: number,
6
+ endAngle: number,
7
+ closed: boolean,
8
+ counterclockwise?: boolean,
9
+ ): CurveProfile;
10
+ //# sourceMappingURL=getCircleProfile.d.ts.map
@@ -1,3 +1,3 @@
1
- import { CurveProfile } from './CurveProfile';
1
+ import {CurveProfile} from './CurveProfile';
2
2
  export declare function getPathProfile(data: string): CurveProfile;
3
- //# sourceMappingURL=getPathProfile.d.ts.map
3
+ //# sourceMappingURL=getPathProfile.d.ts.map
@@ -1,4 +1,7 @@
1
- import { CurvePoint } from './CurvePoint';
2
- import { CurveProfile } from './CurveProfile';
3
- export declare function getPointAtDistance(profile: CurveProfile, distance: number): CurvePoint;
4
- //# sourceMappingURL=getPointAtDistance.d.ts.map
1
+ import {CurvePoint} from './CurvePoint';
2
+ import {CurveProfile} from './CurveProfile';
3
+ export declare function getPointAtDistance(
4
+ profile: CurveProfile,
5
+ distance: number,
6
+ ): CurvePoint;
7
+ //# sourceMappingURL=getPointAtDistance.d.ts.map
@@ -1,4 +1,8 @@
1
- import { Vector2 } from '@revideo/core';
2
- import { CurveProfile } from './CurveProfile';
3
- export declare function getPolylineProfile(points: readonly Vector2[], radius: number, closed: boolean): CurveProfile;
4
- //# sourceMappingURL=getPolylineProfile.d.ts.map
1
+ import {Vector2} from '@revideo/core';
2
+ import {CurveProfile} from './CurveProfile';
3
+ export declare function getPolylineProfile(
4
+ points: readonly Vector2[],
5
+ radius: number,
6
+ closed: boolean,
7
+ ): CurveProfile;
8
+ //# sourceMappingURL=getPolylineProfile.d.ts.map
@@ -1,4 +1,9 @@
1
- import { BBox, Spacing } from '@revideo/core';
2
- import { CurveProfile } from './CurveProfile';
3
- export declare function getRectProfile(rect: BBox, radius: Spacing, smoothCorners: boolean, cornerSharpness: number): CurveProfile;
4
- //# sourceMappingURL=getRectProfile.d.ts.map
1
+ import {BBox, Spacing} from '@revideo/core';
2
+ import {CurveProfile} from './CurveProfile';
3
+ export declare function getRectProfile(
4
+ rect: BBox,
5
+ radius: Spacing,
6
+ smoothCorners: boolean,
7
+ cornerSharpness: number,
8
+ ): CurveProfile;
9
+ //# sourceMappingURL=getRectProfile.d.ts.map
@@ -14,4 +14,4 @@ export * from './getCircleProfile';
14
14
  export * from './getPointAtDistance';
15
15
  export * from './getPolylineProfile';
16
16
  export * from './getRectProfile';
17
- //# sourceMappingURL=index.d.ts.map
17
+ //# sourceMappingURL=index.d.ts.map
@@ -14,4 +14,4 @@ export * from './getCircleProfile';
14
14
  export * from './getPointAtDistance';
15
15
  export * from './getPolylineProfile';
16
16
  export * from './getRectProfile';
17
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvbGliL2N1cnZlcy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGlCQUFpQixDQUFDO0FBQ2hDLGNBQWMsc0JBQXNCLENBQUM7QUFDckMsY0FBYyxvQkFBb0IsQ0FBQztBQUNuQyxjQUFjLGNBQWMsQ0FBQztBQUM3QixjQUFjLGdCQUFnQixDQUFDO0FBQy9CLGNBQWMsWUFBWSxDQUFDO0FBQzNCLGNBQWMsZUFBZSxDQUFDO0FBQzlCLGNBQWMsY0FBYyxDQUFDO0FBQzdCLGNBQWMsZ0JBQWdCLENBQUM7QUFDL0IsY0FBYyxxQkFBcUIsQ0FBQztBQUNwQyxjQUFjLFdBQVcsQ0FBQztBQUMxQixjQUFjLDBCQUEwQixDQUFDO0FBQ3pDLGNBQWMsb0JBQW9CLENBQUM7QUFDbkMsY0FBYyxzQkFBc0IsQ0FBQztBQUNyQyxjQUFjLHNCQUFzQixDQUFDO0FBQ3JDLGNBQWMsa0JBQWtCLENBQUMifQ==
17
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvbGliL2N1cnZlcy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGlCQUFpQixDQUFDO0FBQ2hDLGNBQWMsc0JBQXNCLENBQUM7QUFDckMsY0FBYyxvQkFBb0IsQ0FBQztBQUNuQyxjQUFjLGNBQWMsQ0FBQztBQUM3QixjQUFjLGdCQUFnQixDQUFDO0FBQy9CLGNBQWMsWUFBWSxDQUFDO0FBQzNCLGNBQWMsZUFBZSxDQUFDO0FBQzlCLGNBQWMsY0FBYyxDQUFDO0FBQzdCLGNBQWMsZ0JBQWdCLENBQUM7QUFDL0IsY0FBYyxxQkFBcUIsQ0FBQztBQUNwQyxjQUFjLFdBQVcsQ0FBQztBQUMxQixjQUFjLDBCQUEwQixDQUFDO0FBQ3pDLGNBQWMsb0JBQW9CLENBQUM7QUFDbkMsY0FBYyxzQkFBc0IsQ0FBQztBQUNyQyxjQUFjLHNCQUFzQixDQUFDO0FBQ3JDLGNBQWMsa0JBQWtCLENBQUMifQ==
@@ -1,5 +1,5 @@
1
- import { Signal } from '@revideo/core';
2
- import type { CanvasStyle, PossibleCanvasStyle } from '../partials';
1
+ import {Signal} from '@revideo/core';
2
+ import type {CanvasStyle, PossibleCanvasStyle} from '../partials';
3
3
  export type CanvasStyleSignal<T> = Signal<PossibleCanvasStyle, CanvasStyle, T>;
4
4
  export declare function canvasStyleSignal(): PropertyDecorator;
5
- //# sourceMappingURL=canvasStyleSignal.d.ts.map
5
+ //# sourceMappingURL=canvasStyleSignal.d.ts.map
@@ -1,2 +1,2 @@
1
1
  export declare function colorSignal(): PropertyDecorator;
2
- //# sourceMappingURL=colorSignal.d.ts.map
2
+ //# sourceMappingURL=colorSignal.d.ts.map
@@ -22,5 +22,7 @@
22
22
  * @param entries - A record mapping the property in the compound object to the
23
23
  * corresponding property on the owner node.
24
24
  */
25
- export declare function compound(entries: Record<string, string>): PropertyDecorator;
26
- //# sourceMappingURL=compound.d.ts.map
25
+ export declare function compound(
26
+ entries: Record<string, string>,
27
+ ): PropertyDecorator;
28
+ //# sourceMappingURL=compound.d.ts.map
@@ -6,4 +6,4 @@
6
6
  * See {@link createComputed} for more information.
7
7
  */
8
8
  export declare function computed(): MethodDecorator;
9
- //# sourceMappingURL=computed.d.ts.map
9
+ //# sourceMappingURL=computed.d.ts.map
@@ -1,2 +1,5 @@
1
- export declare function defaultStyle<T>(styleName: string, parse?: (value: string) => T): PropertyDecorator;
2
- //# sourceMappingURL=defaultStyle.d.ts.map
1
+ export declare function defaultStyle<T>(
2
+ styleName: string,
3
+ parse?: (value: string) => T,
4
+ ): PropertyDecorator;
5
+ //# sourceMappingURL=defaultStyle.d.ts.map
@@ -1,11 +1,31 @@
1
- import { Signal, SignalContext, SignalValue, SimpleSignal, ThreadGenerator, TimingFunction } from '@revideo/core';
2
- import { Filter, FilterName } from '../partials';
3
- export type FiltersSignal<TOwner> = Signal<Filter[], Filter[], TOwner, FiltersSignalContext<TOwner>> & {
4
- [K in FilterName]: SimpleSignal<number, TOwner>;
1
+ import {
2
+ Signal,
3
+ SignalContext,
4
+ SignalValue,
5
+ SimpleSignal,
6
+ ThreadGenerator,
7
+ TimingFunction,
8
+ } from '@revideo/core';
9
+ import {Filter, FilterName} from '../partials';
10
+ export type FiltersSignal<TOwner> = Signal<
11
+ Filter[],
12
+ Filter[],
13
+ TOwner,
14
+ FiltersSignalContext<TOwner>
15
+ > & {
16
+ [K in FilterName]: SimpleSignal<number, TOwner>;
5
17
  };
6
- export declare class FiltersSignalContext<TOwner> extends SignalContext<Filter[], Filter[], TOwner> {
7
- constructor(initial: Filter[], owner: TOwner);
8
- tweener(value: SignalValue<Filter[]>, duration: number, timingFunction: TimingFunction): ThreadGenerator;
18
+ export declare class FiltersSignalContext<TOwner> extends SignalContext<
19
+ Filter[],
20
+ Filter[],
21
+ TOwner
22
+ > {
23
+ constructor(initial: Filter[], owner: TOwner);
24
+ tweener(
25
+ value: SignalValue<Filter[]>,
26
+ duration: number,
27
+ timingFunction: TimingFunction,
28
+ ): ThreadGenerator;
9
29
  }
10
30
  export declare function filtersSignal(): PropertyDecorator;
11
- //# sourceMappingURL=filtersSignal.d.ts.map
31
+ //# sourceMappingURL=filtersSignal.d.ts.map
@@ -8,4 +8,4 @@ export * from './initializers';
8
8
  export * from './nodeName';
9
9
  export * from './signal';
10
10
  export * from './vector2Signal';
11
- //# sourceMappingURL=index.d.ts.map
11
+ //# sourceMappingURL=index.d.ts.map
@@ -8,4 +8,4 @@ export * from './initializers';
8
8
  export * from './nodeName';
9
9
  export * from './signal';
10
10
  export * from './vector2Signal';
11
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvbGliL2RlY29yYXRvcnMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxxQkFBcUIsQ0FBQztBQUNwQyxjQUFjLGVBQWUsQ0FBQztBQUM5QixjQUFjLFlBQVksQ0FBQztBQUMzQixjQUFjLFlBQVksQ0FBQztBQUMzQixjQUFjLGdCQUFnQixDQUFDO0FBQy9CLGNBQWMsaUJBQWlCLENBQUM7QUFDaEMsY0FBYyxnQkFBZ0IsQ0FBQztBQUMvQixjQUFjLFlBQVksQ0FBQztBQUMzQixjQUFjLFVBQVUsQ0FBQztBQUN6QixjQUFjLGlCQUFpQixDQUFDIn0=
11
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvbGliL2RlY29yYXRvcnMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxxQkFBcUIsQ0FBQztBQUNwQyxjQUFjLGVBQWUsQ0FBQztBQUM5QixjQUFjLFlBQVksQ0FBQztBQUMzQixjQUFjLFlBQVksQ0FBQztBQUMzQixjQUFjLGdCQUFnQixDQUFDO0FBQy9CLGNBQWMsaUJBQWlCLENBQUM7QUFDaEMsY0FBYyxnQkFBZ0IsQ0FBQztBQUMvQixjQUFjLFlBQVksQ0FBQztBQUMzQixjQUFjLFVBQVUsQ0FBQztBQUN6QixjQUFjLGlCQUFpQixDQUFDIn0=
@@ -1,4 +1,7 @@
1
1
  export type Initializer<T> = (instance: T, context?: any) => void;
2
- export declare function addInitializer<T>(target: any, initializer: Initializer<T>): void;
2
+ export declare function addInitializer<T>(
3
+ target: any,
4
+ initializer: Initializer<T>,
5
+ ): void;
3
6
  export declare function initialize(target: any, context?: any): void;
4
- //# sourceMappingURL=initializers.d.ts.map
7
+ //# sourceMappingURL=initializers.d.ts.map
@@ -1,27 +1,26 @@
1
1
  const INITIALIZERS = Symbol.for('@revideo/2d/decorators/initializers');
2
2
  export function addInitializer(target, initializer) {
3
- if (!target[INITIALIZERS]) {
4
- target[INITIALIZERS] = [];
5
- }
6
- else if (
3
+ if (!target[INITIALIZERS]) {
4
+ target[INITIALIZERS] = [];
5
+ } else if (
7
6
  // if one of the prototypes has initializers
8
7
  target[INITIALIZERS] &&
9
- // and it's not the target object itself
10
- !Object.prototype.hasOwnProperty.call(target, INITIALIZERS)) {
11
- const base = Object.getPrototypeOf(target);
12
- target[INITIALIZERS] = [...base[INITIALIZERS]];
13
- }
14
- target[INITIALIZERS].push(initializer);
8
+ // and it's not the target object itself
9
+ !Object.prototype.hasOwnProperty.call(target, INITIALIZERS)
10
+ ) {
11
+ const base = Object.getPrototypeOf(target);
12
+ target[INITIALIZERS] = [...base[INITIALIZERS]];
13
+ }
14
+ target[INITIALIZERS].push(initializer);
15
15
  }
16
16
  export function initialize(target, context) {
17
- if (target[INITIALIZERS]) {
18
- try {
19
- target[INITIALIZERS].forEach((initializer) => initializer(target, context));
20
- }
21
- catch (e) {
22
- e.inspect ?? (e.inspect = target.key);
23
- throw e;
24
- }
17
+ if (target[INITIALIZERS]) {
18
+ try {
19
+ target[INITIALIZERS].forEach(initializer => initializer(target, context));
20
+ } catch (e) {
21
+ e.inspect ?? (e.inspect = target.key);
22
+ throw e;
25
23
  }
24
+ }
26
25
  }
27
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5pdGlhbGl6ZXJzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL2xpYi9kZWNvcmF0b3JzL2luaXRpYWxpemVycy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLFlBQVksR0FBRyxNQUFNLENBQUMsR0FBRyxDQUFDLHFDQUFxQyxDQUFDLENBQUM7QUFJdkUsTUFBTSxVQUFVLGNBQWMsQ0FBSSxNQUFXLEVBQUUsV0FBMkI7SUFDeEUsSUFBSSxDQUFDLE1BQU0sQ0FBQyxZQUFZLENBQUMsRUFBRSxDQUFDO1FBQzFCLE1BQU0sQ0FBQyxZQUFZLENBQUMsR0FBRyxFQUFFLENBQUM7SUFDNUIsQ0FBQztTQUFNO0lBQ0wsNENBQTRDO0lBQzVDLE1BQU0sQ0FBQyxZQUFZLENBQUM7UUFDcEIsd0NBQXdDO1FBQ3hDLENBQUMsTUFBTSxDQUFDLFNBQVMsQ0FBQyxjQUFjLENBQUMsSUFBSSxDQUFDLE1BQU0sRUFBRSxZQUFZLENBQUMsRUFDM0QsQ0FBQztRQUNELE1BQU0sSUFBSSxHQUFHLE1BQU0sQ0FBQyxjQUFjLENBQUMsTUFBTSxDQUFDLENBQUM7UUFDM0MsTUFBTSxDQUFDLFlBQVksQ0FBQyxHQUFHLENBQUMsR0FBRyxJQUFJLENBQUMsWUFBWSxDQUFDLENBQUMsQ0FBQztJQUNqRCxDQUFDO0lBRUQsTUFBTSxDQUFDLFlBQVksQ0FBQyxDQUFDLElBQUksQ0FBQyxXQUFXLENBQUMsQ0FBQztBQUN6QyxDQUFDO0FBRUQsTUFBTSxVQUFVLFVBQVUsQ0FBQyxNQUFXLEVBQUUsT0FBYTtJQUNuRCxJQUFJLE1BQU0sQ0FBQyxZQUFZLENBQUMsRUFBRSxDQUFDO1FBQ3pCLElBQUksQ0FBQztZQUNILE1BQU0sQ0FBQyxZQUFZLENBQUMsQ0FBQyxPQUFPLENBQUMsQ0FBQyxXQUE2QixFQUFFLEVBQUUsQ0FDN0QsV0FBVyxDQUFDLE1BQU0sRUFBRSxPQUFPLENBQUMsQ0FDN0IsQ0FBQztRQUNKLENBQUM7UUFBQyxPQUFPLENBQU0sRUFBRSxDQUFDO1lBQ2hCLENBQUMsQ0FBQyxPQUFPLEtBQVQsQ0FBQyxDQUFDLE9BQU8sR0FBSyxNQUFNLENBQUMsR0FBRyxFQUFDO1lBQ3pCLE1BQU0sQ0FBQyxDQUFDO1FBQ1YsQ0FBQztJQUNILENBQUM7QUFDSCxDQUFDIn0=
26
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5pdGlhbGl6ZXJzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL2xpYi9kZWNvcmF0b3JzL2luaXRpYWxpemVycy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLFlBQVksR0FBRyxNQUFNLENBQUMsR0FBRyxDQUFDLHFDQUFxQyxDQUFDLENBQUM7QUFJdkUsTUFBTSxVQUFVLGNBQWMsQ0FBSSxNQUFXLEVBQUUsV0FBMkI7SUFDeEUsSUFBSSxDQUFDLE1BQU0sQ0FBQyxZQUFZLENBQUMsRUFBRSxDQUFDO1FBQzFCLE1BQU0sQ0FBQyxZQUFZLENBQUMsR0FBRyxFQUFFLENBQUM7SUFDNUIsQ0FBQztTQUFNO0lBQ0wsNENBQTRDO0lBQzVDLE1BQU0sQ0FBQyxZQUFZLENBQUM7UUFDcEIsd0NBQXdDO1FBQ3hDLENBQUMsTUFBTSxDQUFDLFNBQVMsQ0FBQyxjQUFjLENBQUMsSUFBSSxDQUFDLE1BQU0sRUFBRSxZQUFZLENBQUMsRUFDM0QsQ0FBQztRQUNELE1BQU0sSUFBSSxHQUFHLE1BQU0sQ0FBQyxjQUFjLENBQUMsTUFBTSxDQUFDLENBQUM7UUFDM0MsTUFBTSxDQUFDLFlBQVksQ0FBQyxHQUFHLENBQUMsR0FBRyxJQUFJLENBQUMsWUFBWSxDQUFDLENBQUMsQ0FBQztJQUNqRCxDQUFDO0lBRUQsTUFBTSxDQUFDLFlBQVksQ0FBQyxDQUFDLElBQUksQ0FBQyxXQUFXLENBQUMsQ0FBQztBQUN6QyxDQUFDO0FBRUQsTUFBTSxVQUFVLFVBQVUsQ0FBQyxNQUFXLEVBQUUsT0FBYTtJQUNuRCxJQUFJLE1BQU0sQ0FBQyxZQUFZLENBQUMsRUFBRSxDQUFDO1FBQ3pCLElBQUksQ0FBQztZQUNILE1BQU0sQ0FBQyxZQUFZLENBQUMsQ0FBQyxPQUFPLENBQUMsQ0FBQyxXQUE2QixFQUFFLEVBQUUsQ0FDN0QsV0FBVyxDQUFDLE1BQU0sRUFBRSxPQUFPLENBQUMsQ0FDN0IsQ0FBQztRQUNKLENBQUM7UUFBQyxPQUFPLENBQU0sRUFBRSxDQUFDO1lBQ2hCLENBQUMsQ0FBQyxPQUFPLEtBQVQsQ0FBQyxDQUFDLE9BQU8sR0FBSyxNQUFNLENBQUMsR0FBRyxFQUFDO1lBQ3pCLE1BQU0sQ0FBQyxDQUFDO1FBQ1YsQ0FBQztJQUNILENBQUM7QUFDSCxDQUFDIn0=
@@ -6,4 +6,4 @@ export declare const NODE_NAME: unique symbol;
6
6
  * @internal
7
7
  */
8
8
  export declare function nodeName(name: string): (target: any) => void;
9
- //# sourceMappingURL=nodeName.d.ts.map
9
+ //# sourceMappingURL=nodeName.d.ts.map
@@ -6,8 +6,8 @@ export const NODE_NAME = Symbol.for('@revideo/2d/nodeName');
6
6
  * @internal
7
7
  */
8
8
  export function nodeName(name) {
9
- return function (target) {
10
- target.prototype[NODE_NAME] = name;
11
- };
9
+ return function (target) {
10
+ target.prototype[NODE_NAME] = name;
11
+ };
12
12
  }
13
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibm9kZU5hbWUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvbGliL2RlY29yYXRvcnMvbm9kZU5hbWUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFDSCxNQUFNLENBQUMsTUFBTSxTQUFTLEdBQUcsTUFBTSxDQUFDLEdBQUcsQ0FBQyxzQkFBc0IsQ0FBQyxDQUFDO0FBRTVEOztHQUVHO0FBQ0gsTUFBTSxVQUFVLFFBQVEsQ0FBQyxJQUFZO0lBQ25DLE9BQU8sVUFBVSxNQUFXO1FBQzFCLE1BQU0sQ0FBQyxTQUFTLENBQUMsU0FBUyxDQUFDLEdBQUcsSUFBSSxDQUFDO0lBQ3JDLENBQUMsQ0FBQztBQUNKLENBQUMifQ==
13
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibm9kZU5hbWUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvbGliL2RlY29yYXRvcnMvbm9kZU5hbWUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFDSCxNQUFNLENBQUMsTUFBTSxTQUFTLEdBQUcsTUFBTSxDQUFDLEdBQUcsQ0FBQyxzQkFBc0IsQ0FBQyxDQUFDO0FBRTVEOztHQUVHO0FBQ0gsTUFBTSxVQUFVLFFBQVEsQ0FBQyxJQUFZO0lBQ25DLE9BQU8sVUFBVSxNQUFXO1FBQzFCLE1BQU0sQ0FBQyxTQUFTLENBQUMsU0FBUyxDQUFDLEdBQUcsSUFBSSxDQUFDO0lBQ3JDLENBQUMsQ0FBQztBQUNKLENBQUMifQ==
@@ -1,21 +1,37 @@
1
- import { InterpolationFunction, TimingFunction } from '@revideo/core';
1
+ import {InterpolationFunction, TimingFunction} from '@revideo/core';
2
2
  export interface PropertyMetadata<T> {
3
- default?: T;
4
- interpolationFunction?: InterpolationFunction<T>;
5
- parser?: (value: any) => T;
6
- getter?: () => T;
7
- setter?: (value: any) => void;
8
- tweener?: (value: T, duration: number, timingFunction: TimingFunction, interpolationFunction: InterpolationFunction<T>) => void;
9
- cloneable?: boolean;
10
- inspectable?: boolean;
11
- compoundParent?: string;
12
- compound?: boolean;
13
- compoundEntries: [string, string][];
3
+ default?: T;
4
+ interpolationFunction?: InterpolationFunction<T>;
5
+ parser?: (value: any) => T;
6
+ getter?: () => T;
7
+ setter?: (value: any) => void;
8
+ tweener?: (
9
+ value: T,
10
+ duration: number,
11
+ timingFunction: TimingFunction,
12
+ interpolationFunction: InterpolationFunction<T>,
13
+ ) => void;
14
+ cloneable?: boolean;
15
+ inspectable?: boolean;
16
+ compoundParent?: string;
17
+ compound?: boolean;
18
+ compoundEntries: [string, string][];
14
19
  }
15
- export declare function getPropertyMeta<T>(object: any, key: string | symbol): PropertyMetadata<T> | null;
16
- export declare function getPropertyMetaOrCreate<T>(object: any, key: string | symbol): PropertyMetadata<T>;
17
- export declare function getPropertiesOf(value: any): Record<string, PropertyMetadata<any>>;
18
- export declare function initializeSignals(instance: any, props: Record<string, any>): void;
20
+ export declare function getPropertyMeta<T>(
21
+ object: any,
22
+ key: string | symbol,
23
+ ): PropertyMetadata<T> | null;
24
+ export declare function getPropertyMetaOrCreate<T>(
25
+ object: any,
26
+ key: string | symbol,
27
+ ): PropertyMetadata<T>;
28
+ export declare function getPropertiesOf(
29
+ value: any,
30
+ ): Record<string, PropertyMetadata<any>>;
31
+ export declare function initializeSignals(
32
+ instance: any,
33
+ props: Record<string, any>,
34
+ ): void;
19
35
  /**
20
36
  * Create a signal decorator.
21
37
  *
@@ -76,7 +92,9 @@ export declare function initial<T>(value: T): PropertyDecorator;
76
92
  *
77
93
  * @param value - The interpolation function for the property.
78
94
  */
79
- export declare function interpolation<T>(value: InterpolationFunction<T>): PropertyDecorator;
95
+ export declare function interpolation<T>(
96
+ value: InterpolationFunction<T>,
97
+ ): PropertyDecorator;
80
98
  /**
81
99
  * Create a signal parser decorator.
82
100
  *
@@ -131,9 +149,11 @@ export declare function parser<T>(value: (value: any) => T): PropertyDecorator;
131
149
  *
132
150
  * @param value - The wrapper class for the property.
133
151
  */
134
- export declare function wrapper<T>(value: (new (value: any) => T) & {
152
+ export declare function wrapper<T>(
153
+ value: (new (value: any) => T) & {
135
154
  lerp?: InterpolationFunction<T>;
136
- }): PropertyDecorator;
155
+ },
156
+ ): PropertyDecorator;
137
157
  /**
138
158
  * Create a cloneable property decorator.
139
159
  *
@@ -180,4 +200,4 @@ export declare function cloneable<T>(value?: boolean): PropertyDecorator;
180
200
  * @param value - Whether the property should be inspectable.
181
201
  */
182
202
  export declare function inspectable<T>(value?: boolean): PropertyDecorator;
183
- //# sourceMappingURL=signal.d.ts.map
203
+ //# sourceMappingURL=signal.d.ts.map
@@ -1,2 +1,2 @@
1
1
  export declare function spacingSignal(prefix?: string): PropertyDecorator;
2
- //# sourceMappingURL=spacingSignal.d.ts.map
2
+ //# sourceMappingURL=spacingSignal.d.ts.map