Skip to content

Commit

Permalink
Replace FrozenArray<T> with sequence<T> index.bs
Browse files Browse the repository at this point in the history
As suggested in #100.
  • Loading branch information
reillyeon committed Apr 3, 2024
1 parent cc6c946 commit 9c1f25a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ dictionary FaceDetectorOptions {
<xmp class="idl">
dictionary DetectedFace {
required DOMRectReadOnly boundingBox;
required FrozenArray<Landmark>? landmarks;
required sequence<Landmark>? landmarks;
};
</xmp>

Expand All @@ -139,7 +139,7 @@ dictionary DetectedFace {

<xmp class="idl">
dictionary Landmark {
required FrozenArray<Point2D> locations;
required sequence<Point2D> locations;
LandmarkType type;
};
</xmp>
Expand Down Expand Up @@ -250,7 +250,7 @@ dictionary DetectedBarcode {
required DOMRectReadOnly boundingBox;
required DOMString rawValue;
required BarcodeFormat format;
required FrozenArray<Point2D> cornerPoints;
required sequence<Point2D> cornerPoints;
};
</xmp>

Expand Down

0 comments on commit 9c1f25a

Please sign in to comment.