You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"docComment": "/**\n * It's not okay for a \"public\" function to reference a \"beta\" symbol, because \"beta\" is less public than \"public\".\n *\n * @public\n */\n",
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
4
+
5
+
```ts
6
+
7
+
// @alpha
8
+
declarefunction alphaFunctionReturnsBeta():IBeta;
9
+
10
+
// @beta (undocumented)
11
+
interfaceIBeta {
12
+
// (undocumented)
13
+
x:number;
14
+
}
15
+
16
+
// Warning: (ae-incompatible-release-tags) The symbol "publicFunctionReturnsBeta" is marked as @public, but its signature references "IBeta" which is marked as @beta
0 commit comments