File tree 8 files changed +110
-0
lines changed
8 files changed +110
-0
lines changed Original file line number Diff line number Diff line change 15
15
" docReferences2" ,
16
16
" docReferences3" ,
17
17
" dynamicImportType" ,
18
+ " dynamicImportType2" ,
18
19
" ecmaScriptPrivateFields" ,
19
20
" exportDuplicate" ,
20
21
" exportEquals" ,
Original file line number Diff line number Diff line change
1
+ {
2
+ "metadata" : {
3
+ "toolPackage" : " @microsoft/api-extractor" ,
4
+ "toolVersion" : " [test mode]" ,
5
+ "schemaVersion" : 1003 ,
6
+ "oldestForwardsCompatibleVersion" : 1001
7
+ },
8
+ "kind" : " Package" ,
9
+ "canonicalReference" : " api-extractor-scenarios!" ,
10
+ "docComment" : " " ,
11
+ "name" : " api-extractor-scenarios" ,
12
+ "members" : [
13
+ {
14
+ "kind" : " EntryPoint" ,
15
+ "canonicalReference" : " api-extractor-scenarios!" ,
16
+ "name" : " " ,
17
+ "members" : [
18
+ {
19
+ "kind" : " Interface" ,
20
+ "canonicalReference" : " api-extractor-scenarios!IExample:interface" ,
21
+ "docComment" : " /**\n * @public\n */\n " ,
22
+ "excerptTokens" : [
23
+ {
24
+ "kind" : " Content" ,
25
+ "text" : " export interface IExample "
26
+ }
27
+ ],
28
+ "releaseTag" : " Public" ,
29
+ "name" : " IExample" ,
30
+ "members" : [
31
+ {
32
+ "kind" : " PropertySignature" ,
33
+ "canonicalReference" : " api-extractor-scenarios!IExample#dottedImportType:member" ,
34
+ "docComment" : " " ,
35
+ "excerptTokens" : [
36
+ {
37
+ "kind" : " Content" ,
38
+ "text" : " dottedImportType: "
39
+ },
40
+ {
41
+ "kind" : " Content" ,
42
+ "text" : " import('api-extractor-lib1-test')."
43
+ },
44
+ {
45
+ "kind" : " Reference" ,
46
+ "text" : " Lib1Namespace.Inner.X" ,
47
+ "canonicalReference" : " api-extractor-lib1-test!Lib1Namespace.Inner.X:class"
48
+ },
49
+ {
50
+ "kind" : " Content" ,
51
+ "text" : " ;"
52
+ }
53
+ ],
54
+ "releaseTag" : " Public" ,
55
+ "name" : " dottedImportType" ,
56
+ "propertyTypeTokenRange" : {
57
+ "startIndex" : 1 ,
58
+ "endIndex" : 3
59
+ }
60
+ }
61
+ ],
62
+ "extendsTokenRanges" : []
63
+ }
64
+ ]
65
+ }
66
+ ]
67
+ }
Original file line number Diff line number Diff line change
1
+ ## API Report File for "api-extractor-scenarios"
2
+
3
+ > Do not edit this file. It is a report generated by [ API Extractor] ( https://api-extractor.com/ ) .
4
+
5
+ ``` ts
6
+
7
+ import * as Lib1Namespace_Inner_X from ' api-extractor-lib1-test' ;
8
+
9
+ // @public (undocumented)
10
+ export interface IExample {
11
+ // (undocumented)
12
+ dottedImportType: Lib1Namespace_Inner_X .Lib1Namespace .Inner .X ;
13
+ }
14
+
15
+
16
+ // (No @packageDocumentation comment for this package)
17
+
18
+ ```
Original file line number Diff line number Diff line change
1
+ import * as Lib1Namespace_Inner_X from 'api-extractor-lib1-test' ;
2
+
3
+ /** @public */
4
+ export declare interface IExample {
5
+ dottedImportType : Lib1Namespace_Inner_X . Lib1Namespace . Inner . X ;
6
+ }
7
+
8
+ export { }
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
+
1
4
/** @public */
2
5
export class Item {
3
6
options : import ( './Options' ) . Options ;
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
+
1
4
export interface Options {
2
5
name : string ;
3
6
color : 'red' | 'blue' ;
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
+
1
4
export { Lib2Class } from 'api-extractor-lib2-test' ;
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
+ /** @public */
5
+ export interface IExample {
6
+ dottedImportType : import ( 'api-extractor-lib1-test' ) . Lib1Namespace . Inner . X ;
7
+ }
You can’t perform that action at this time.
0 commit comments