File tree Expand file tree Collapse file tree 5 files changed +49
-4
lines changed Expand file tree Collapse file tree 5 files changed +49
-4
lines changed Original file line number Diff line number Diff line change 4
4
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5
5
"version" : " 0.2.0" ,
6
6
"configurations" : [
7
+ {
8
+ "name" : " Launch Program" ,
9
+ "program" : " ${workspaceFolder}/scripts/generate-api.js" ,
10
+ "request" : " launch" ,
11
+ "skipFiles" : [" <node_internals>/**" ],
12
+ "type" : " pwa-node"
13
+ },
7
14
{
8
15
"type" : " node" ,
9
16
"name" : " vscode-jest-tests" ,
10
17
"request" : " launch" ,
11
- "args" : [
12
- " --runInBand"
13
- ],
18
+ "args" : [" --runInBand" ],
14
19
"cwd" : " ${workspaceFolder}" ,
15
20
"console" : " integratedTerminal" ,
16
21
"internalConsoleOptions" : " neverOpen" ,
17
22
"disableOptimisticBPs" : true ,
18
23
"program" : " ${workspaceFolder}/node_modules/jest/bin/jest"
19
24
}
20
25
]
21
- }
26
+ }
Original file line number Diff line number Diff line change 65
65
"devDependencies" : {
66
66
"@microsoft/api-documenter" : " ^7.8.1" ,
67
67
"@microsoft/api-extractor" : " ^7.8.1" ,
68
+ "@microsoft/api-extractor-model" : " ^7.8.6" ,
68
69
"@rollup/plugin-alias" : " ^3.1.0" ,
69
70
"@rollup/plugin-commonjs" : " ^12.0.0" ,
70
71
"@rollup/plugin-node-resolve" : " ^8.0.0" ,
Original file line number Diff line number Diff line change
1
+ const { ApiModel } = require ( '@microsoft/api-extractor-model' )
2
+ const path = require ( 'path' )
3
+
4
+ const apiModel = new ApiModel ( )
5
+ const apiPackage = apiModel . loadPackage (
6
+ path . join ( __dirname , '../temp/vue-router.api.json' )
7
+ )
8
+
9
+ for ( const package of apiPackage . members ) {
10
+ for ( const member of package . members ) {
11
+ console . log ( member . displayName )
12
+ // member.
13
+ }
14
+ }
Original file line number Diff line number Diff line change @@ -53,6 +53,10 @@ export interface ScrollPositionElement {
53
53
54
54
export type ScrollPosition = ScrollPositionCoordinates | ScrollPositionElement
55
55
56
+ export interface ScrollPositionNew extends ScrollToOptions {
57
+ el ?: Element | string
58
+ }
59
+
56
60
type Awaitable < T > = T | PromiseLike < T >
57
61
58
62
export interface ScrollBehaviorHandler < T > {
Original file line number Diff line number Diff line change 484
484
" @microsoft/tsdoc" " 0.12.19"
485
485
" @rushstack/node-core-library" " 3.19.7"
486
486
487
+ " @microsoft/api-extractor-model@^7.8.6 " :
488
+ version "7.8.6"
489
+ resolved "https://registry.yarnpkg.com/@microsoft/api-extractor-model/-/api-extractor-model-7.8.6.tgz#925660a2d621eec47b2a29d857e146f1a45312cf"
490
+ integrity sha512-FU+mz4RkNTn9wNIN4TAnW4WG3ZXTk7sW4HkYEih29tzWhNn0RvfLQB2N/9573DNHuY/W0yfEMoDA2hfsdWgOtQ==
491
+ dependencies :
492
+ " @microsoft/tsdoc" " 0.12.19"
493
+ " @rushstack/node-core-library" " 3.23.1"
494
+
487
495
" @microsoft/api-extractor@^7.8.1 " :
488
496
version "7.8.1"
489
497
resolved "https://registry.yarnpkg.com/@microsoft/api-extractor/-/api-extractor-7.8.1.tgz#29b473ef85273b6b28974f89f1ccd46329297bc3"
601
609
timsort "~0.3.0"
602
610
z-schema "~3.18.3"
603
611
612
+
613
+ version "3.23.1"
614
+ resolved "https://registry.yarnpkg.com/@rushstack/node-core-library/-/node-core-library-3.23.1.tgz#f9963c9a1978b6085c899329b770a1591d20c36b"
615
+ integrity sha512-M4TTtdfG+U0DUfhZfKS3KNBI6meN8RKFVTzflUCjh3HFIfKhuON02UyE1p5XpZxxpe7/Qp1WSk7Boweva5yQXA==
616
+ dependencies :
617
+ " @types/node" " 10.17.13"
618
+ colors "~1.2.1"
619
+ fs-extra "~7.0.1"
620
+ jju "~1.4.0"
621
+ semver "~5.3.0"
622
+ timsort "~0.3.0"
623
+ z-schema "~3.18.3"
624
+
604
625
605
626
version "4.4.0"
606
627
resolved "https://registry.yarnpkg.com/@rushstack/ts-command-line/-/ts-command-line-4.4.0.tgz#796f24681fdcbd01d463278c9e80a51ea5f73b2b"
You can’t perform that action at this time.
0 commit comments