Skip to content

Commit

Permalink
rush rebuild
Browse files Browse the repository at this point in the history
  • Loading branch information
octogonz committed Mar 18, 2024
1 parent bca9f1b commit 05c3afa
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 24 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -640,7 +640,16 @@
"excerptTokens": [
{
"kind": "Content",
"text": "export declare function someFunction7({ then }: "
"text": "export declare function someFunction7({ "
},
{
"kind": "Reference",
"text": "then",
"canonicalReference": "!Promise#then"
},
{
"kind": "Content",
"text": ": then2 }: "
},
{
"kind": "Reference",
Expand Down Expand Up @@ -671,17 +680,17 @@
],
"fileUrlPath": "src/referenceTokens/index.ts",
"returnTypeTokenRange": {
"startIndex": 4,
"endIndex": 6
"startIndex": 6,
"endIndex": 8
},
"releaseTag": "Public",
"overloadIndex": 1,
"parameters": [
{
"parameterName": "{ then }",
"parameterName": "{ then: then2 }",
"parameterTypeTokenRange": {
"startIndex": 1,
"endIndex": 3
"startIndex": 3,
"endIndex": 5
},
"isOptional": false
}
Expand All @@ -695,7 +704,16 @@
"excerptTokens": [
{
"kind": "Content",
"text": "export declare function someFunction8({ prop }: "
"text": "export declare function someFunction8({ "
},
{
"kind": "Reference",
"text": "prop",
"canonicalReference": "api-extractor-lib2-test!Lib2Class#prop"
},
{
"kind": "Content",
"text": ": prop2 }: "
},
{
"kind": "Reference",
Expand All @@ -717,17 +735,17 @@
],
"fileUrlPath": "src/referenceTokens/index.ts",
"returnTypeTokenRange": {
"startIndex": 3,
"endIndex": 4
"startIndex": 5,
"endIndex": 6
},
"releaseTag": "Public",
"overloadIndex": 1,
"parameters": [
{
"parameterName": "{ prop }",
"parameterName": "{ prop: prop2 }",
"parameterTypeTokenRange": {
"startIndex": 1,
"endIndex": 2
"startIndex": 3,
"endIndex": 4
},
"isOptional": false
}
Expand All @@ -741,7 +759,16 @@
"excerptTokens": [
{
"kind": "Content",
"text": "export declare function someFunction9({ prop }: "
"text": "export declare function someFunction9({ "
},
{
"kind": "Reference",
"text": "prop",
"canonicalReference": "api-extractor-scenarios!SomeInterface1#prop"
},
{
"kind": "Content",
"text": ": prop2 }: "
},
{
"kind": "Reference",
Expand All @@ -763,17 +790,17 @@
],
"fileUrlPath": "src/referenceTokens/index.ts",
"returnTypeTokenRange": {
"startIndex": 3,
"endIndex": 4
"startIndex": 5,
"endIndex": 6
},
"releaseTag": "Public",
"overloadIndex": 1,
"parameters": [
{
"parameterName": "{ prop }",
"parameterName": "{ prop: prop2 }",
"parameterTypeTokenRange": {
"startIndex": 1,
"endIndex": 2
"startIndex": 3,
"endIndex": 4
},
"isOptional": false
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,13 +65,13 @@ export function someFunction5(): SomeEnum.A;
export function someFunction6(): typeof SomeClass1.staticProp;

// @public
export function someFunction7({ then }: Promise<void>): typeof Date.prototype.getDate;
export function someFunction7({ then: then2 }: Promise<void>): typeof Date.prototype.getDate;

// @public
export function someFunction8({ prop }: Lib2Class): void;
export function someFunction8({ prop: prop2 }: Lib2Class): void;

// @public
export function someFunction9({ prop }: SomeInterface1): void;
export function someFunction9({ prop: prop2 }: SomeInterface1): void;

// @public (undocumented)
export interface SomeInterface1 {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,19 +67,19 @@ export declare function someFunction6(): typeof SomeClass1.staticProp;
* Global symbol reference.
* @public
*/
export declare function someFunction7({ then }: Promise<void>): typeof Date.prototype.getDate;
export declare function someFunction7({ then: then2 }: Promise<void>): typeof Date.prototype.getDate;

/**
* External symbol reference.
* @public
*/
export declare function someFunction8({ prop }: Lib2Class): void;
export declare function someFunction8({ prop: prop2 }: Lib2Class): void;

/**
* Interface member reference.
* @public
*/
export declare function someFunction9({ prop }: SomeInterface1): void;
export declare function someFunction9({ prop: prop2 }: SomeInterface1): void;

/** @public */
export declare interface SomeInterface1 {
Expand Down

0 comments on commit 05c3afa

Please sign in to comment.