File tree Expand file tree Collapse file tree 17 files changed +39
-36
lines changed
Expand file tree Collapse file tree 17 files changed +39
-36
lines changed Original file line number Diff line number Diff line change 1414 "@types/jest" : " 23.3.11" ,
1515 "@types/node" : " 8.10.54" ,
1616 "fs-extra" : " ~7.0.1" ,
17- "typescript" : " ~3.1.6 "
17+ "typescript" : " ~3.7.2 "
1818 }
1919}
Original file line number Diff line number Diff line change 55``` ts
66
77// Warning: (ae-forgotten-export) The symbol "Lib1ForgottenExport" needs to be exported by the entry point index.d.ts
8- //
8+ //
99// @public (undocumented)
1010export class Lib1Class extends Lib1ForgottenExport {
1111}
Original file line number Diff line number Diff line change 1313 "@types/jest" : " 23.3.11" ,
1414 "@types/node" : " 8.10.54" ,
1515 "fs-extra" : " ~7.0.1" ,
16- "typescript" : " ~3.1.6 "
16+ "typescript" : " ~2.4.2 "
1717 }
1818}
Original file line number Diff line number Diff line change 1+ // Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
2+ // See LICENSE in the project root for license information.
3+
4+ export class Lib1ForgottenExport {
5+ }
Original file line number Diff line number Diff line change 1010 * @packageDocumentation
1111 */
1212
13- class Lib1ForgottenExport {
14- }
13+ import { Lib1ForgottenExport } from './Lib1ForgottenExport' ;
1514
1615/** @public */
1716export class Lib1Class extends Lib1ForgottenExport {
Original file line number Diff line number Diff line change 55 "module" : " commonjs" ,
66 "declaration" : true ,
77 "sourceMap" : true ,
8- "declarationMap" : true ,
98 "experimentalDecorators" : true ,
109 "strictNullChecks" : true ,
1110 "types" : [
Original file line number Diff line number Diff line change 1313 "@types/jest" : " 23.3.11" ,
1414 "@types/node" : " 8.10.54" ,
1515 "fs-extra" : " ~7.0.1" ,
16- "typescript" : " ~3.1.6 "
16+ "typescript" : " ~3.7.2 "
1717 }
1818}
Original file line number Diff line number Diff line change 1616 "@types/jest" : " 23.3.11" ,
1717 "@types/node" : " 8.10.54" ,
1818 "fs-extra" : " ~7.0.1" ,
19- "typescript" : " ~3.1.6 "
19+ "typescript" : " ~3.7.2 "
2020 }
2121}
Original file line number Diff line number Diff line change 1919 "api-extractor-lib3-test" : " 1.0.0" ,
2020 "colors" : " ~1.2.1" ,
2121 "fs-extra" : " ~7.0.1" ,
22- "typescript" : " ~3.1.6 "
22+ "typescript" : " ~3.7.2 "
2323 }
2424}
Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ export declare class ClassWithAccessModifiers {
9292 /** Doc comment */
9393 private privateMethod ;
9494 /** Doc comment */
95- private readonly privateGetter ;
95+ private get privateGetter ( ) ;
9696 /** Doc comment */
9797 private privateSetter ;
9898 /** Doc comment */
@@ -102,7 +102,7 @@ export declare class ClassWithAccessModifiers {
102102 /** Doc comment */
103103 protected protectedField : number ;
104104 /** Doc comment */
105- protected readonly protectedGetter : string ;
105+ protected get protectedGetter ( ) : string ;
106106 /** Doc comment */
107107 protected protectedSetter ( x : string ) : void ;
108108 /** Doc comment */
@@ -116,11 +116,11 @@ export declare class ClassWithAccessModifiers {
116116 */
117117export declare class ClassWithSymbols {
118118 readonly [ unexportedCustomSymbol ] : number ;
119- readonly [ locallyExportedCustomSymbol ] : string ;
119+ get [ locallyExportedCustomSymbol ] ( ) : string ;
120120 [ fullyExportedCustomSymbol ] ( ) : void ;
121- readonly [ ANamespace . locallyExportedCustomSymbol ] : string ;
121+ get [ ANamespace . locallyExportedCustomSymbol ] ( ) : string ;
122122 [ ANamespace . fullyExportedCustomSymbol ] ( ) : void ;
123- readonly [ Symbol . toStringTag ] : string ;
123+ get [ Symbol . toStringTag ] ( ) : string ;
124124}
125125
126126/**
You can’t perform that action at this time.
0 commit comments