File tree Expand file tree Collapse file tree 3 files changed +11
-7
lines changed Expand file tree Collapse file tree 3 files changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ export enum DocEnumNamespaceMerge {
83
83
84
84
// @public
85
85
export namespace DocEnumNamespaceMerge {
86
- export function exampleFunction(): void ;
86
+ function exampleFunction(): void ;
87
87
}
88
88
89
89
// @public
@@ -178,8 +178,8 @@ export interface IDocInterface7 {
178
178
179
179
// @public
180
180
export namespace OuterNamespace {
181
- export namespace InnerNamespace {
182
- export function nestedFunction(x : number ): number ;
181
+ namespace InnerNamespace {
182
+ function nestedFunction(x : number ): number ;
183
183
}
184
184
let nestedVariable: boolean ;
185
185
}
Original file line number Diff line number Diff line change 175
175
{
176
176
"kind" : " Namespace" ,
177
177
"canonicalReference" : " api-extractor-scenarios!AllExportedNS:namespace" ,
178
- "docComment" : " " ,
178
+ "docComment" : " /** \n * @public \n */ \n " ,
179
179
"excerptTokens" : [
180
180
{
181
181
"kind" : " Content" ,
225
225
{
226
226
"kind" : " Class" ,
227
227
"canonicalReference" : " api-extractor-scenarios!FinalRenamedClass:class" ,
228
- "docComment" : " " ,
228
+ "docComment" : " /** \n * @public \n */ \n " ,
229
229
"excerptTokens" : [
230
230
{
231
231
"kind" : " Content" ,
243
243
{
244
244
"kind" : " Namespace" ,
245
245
"canonicalReference" : " api-extractor-scenarios!PartalExportedNS:namespace" ,
246
- "docComment" : " " ,
246
+ "docComment" : " /** \n * @public \n */ \n " ,
247
247
"excerptTokens" : [
248
248
{
249
249
"kind" : " Content" ,
373
373
{
374
374
"kind" : " Namespace" ,
375
375
"canonicalReference" : " api-extractor-scenarios!ReexportNS:namespace" ,
376
- "docComment" : " " ,
376
+ "docComment" : " /** \n * @public \n */ \n " ,
377
377
"excerptTokens" : [
378
378
{
379
379
"kind" : " Content" ,
Original file line number Diff line number Diff line change
1
+ /** @public */
1
2
export declare namespace AllExportedNS {
2
3
class ExportedClass {
3
4
}
4
5
interface ExportedInterface {
5
6
}
6
7
}
7
8
9
+ /** @public */
8
10
export declare class FinalRenamedClass {
9
11
}
10
12
13
+ /** @public */
11
14
export declare namespace PartalExportedNS {
12
15
export const var1 = 1 , var2 = 2 ;
13
16
interface UnexportedClass {
@@ -18,6 +21,7 @@ export declare namespace PartalExportedNS {
18
21
export { } ;
19
22
}
20
23
24
+ /** @public */
21
25
export declare namespace ReexportNS {
22
26
export { FinalRenamedClass as RenamedClass } ;
23
27
export { FinalRenamedClass as RenamedClass3 } ;
You can’t perform that action at this time.
0 commit comments