From 300bfee04c2e5a1500229a437bc58839e80437ab Mon Sep 17 00:00:00 2001 From: Benjamin Fan Date: Fri, 9 Feb 2024 05:55:11 -0800 Subject: [PATCH] chore(markdown): Remove obsolete Part.asProps() doc --- markdown/dev/reference/api/part/props/en.md | 27 --------------------- 1 file changed, 27 deletions(-) delete mode 100644 markdown/dev/reference/api/part/props/en.md diff --git a/markdown/dev/reference/api/part/props/en.md b/markdown/dev/reference/api/part/props/en.md deleted file mode 100644 index 0aaedc38b96..00000000000 --- a/markdown/dev/reference/api/part/props/en.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: Part.asProps() ---- - -This `Part.asProps()` method can be used to return the part as an object that is suitable for inclusion in renderprops. This method is used internally and is only required when building your own render system. - - -## Signature - -```js - - Part.prototype.asProps = function () - return { - paths: this.paths, - points: this.points, - snippets: this.snippets, - attributes: this.attributes, - height: this.height, - width: this.width, - bottomRight: this.bottomRight, - topLeft: this.topLeft, - } - -``` - - -