Skip to content

Commit

Permalink
update comments
Browse files Browse the repository at this point in the history
  • Loading branch information
ramonjd committed Sep 23, 2024
1 parent a088210 commit cced471
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions packages/edit-site/src/components/style-book/categories.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
*
* @typedef {Object} StyleBookCategory
*
* @property {string} slug Object with named attributes.
* @property {string} title Object with named attributes.
* @property {Array?} blocks Object with named attributes.
* @property {Array?} excludes Array with numeric attributes.
* @property {string} slug Category identifier.
* @property {string} title Category title/label.
* @property {Array?} blocks Array of block names to include in the category. Used when blocks are not included in the category by default.
* @property {Array?} excludes Array of blocks to exclude from the category. Used when blocks are included in the category by default.
*/

/**
Expand All @@ -25,10 +25,10 @@
*
* @typedef {Object} CategoryExamples
*
* @property {string} slug Slug of the category.
* @property {string} title Title of the category for the UI.
* @property {Array<blockExamples>?} examples Object with named attributes.
* @property {Array<CategoryExamples>?} subcategories Array with numeric attributes.
* @property {string} slug Category identifier.
* @property {string} title Category title/label.
* @property {Array<blockExamples>?} examples Array of block examples.
* @property {Array<CategoryExamples>?} subcategories Array of subcategory examples.
*/

/**
Expand Down

0 comments on commit cced471

Please sign in to comment.