Merge pull request #3908 from backstage/rugvip/items

docs: show how to assign annotations to primitive array item types in config schema
This commit is contained in:
Patrik Oldsberg
2021-01-04 20:46:51 +01:00
committed by GitHub
+4
View File
@@ -36,6 +36,10 @@ export interface Config {
* @visibility frontend
*/
baseUrl: string;
// Use @items.<name> to assign annotations to primitive array items
/** @items.visibility frontend */
myItems: string[];
};
}
```