Skip to content

Commit 884679c

Browse files
committed
Bump typedoc from 0.28.13 to 0.28.14
1 parent fdc9353 commit 884679c

32 files changed

+62
-62
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
"tsdown": "^0.15.6",
9090
"tsx": "^4.20.6",
9191
"type-fest": "^5.0.1",
92-
"typedoc": "^0.28.13",
92+
"typedoc": "^0.28.14",
9393
"typedoc-plugin-markdown": "^4.9.0",
9494
"typedoc-plugin-mdn-links": "^5.0.9",
9595
"typescript": "^5.9.3",

packages/core/docs/@eslint-react/namespaces/isReactAPI/type-aliases/ReturnType.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
#### node
2222

23-
`undefined` | `null` | `Node`
23+
`Node` | `null` | `undefined`
2424

2525
### Returns
2626

@@ -44,7 +44,7 @@ node is Identifier \| MemberExpression
4444

4545
##### node
4646

47-
`undefined` | `null` | `Node`
47+
`Node` | `null` | `undefined`
4848

4949
#### Returns
5050

packages/core/docs/@eslint-react/namespaces/isReactAPICall/type-aliases/ReturnType.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
#### node
2222

23-
`undefined` | `null` | `Node`
23+
`Node` | `null` | `undefined`
2424

2525
### Returns
2626

@@ -44,7 +44,7 @@
4444

4545
##### node
4646

47-
`undefined` | `null` | `Node`
47+
`Node` | `null` | `undefined`
4848

4949
#### Returns
5050

packages/core/docs/functions/findParentJsxAttribute.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# Function: findParentJsxAttribute()
88

9-
> **findParentJsxAttribute**(`node`, `test`): `undefined` \| `JSXAttribute`
9+
> **findParentJsxAttribute**(`node`, `test`): `JSXAttribute` \| `undefined`
1010
1111
Traverses up the AST to find a parent JSX attribute node that matches a given test
1212

@@ -27,6 +27,6 @@ Optional predicate function to test if the attribute meets criteria
2727

2828
## Returns
2929

30-
`undefined` \| `JSXAttribute`
30+
`JSXAttribute` \| `undefined`
3131

3232
The first matching JSX attribute node found when traversing upwards, or undefined

packages/core/docs/functions/getComponentFlagFromInitPath.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
### initPath
1414

15-
`undefined` | `FunctionInitPath`
15+
`FunctionInitPath` | `undefined`
1616

1717
## Returns
1818

packages/core/docs/functions/getComponentNameFromId.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66

77
# Function: getComponentNameFromId()
88

9-
> **getComponentNameFromId**(`id`): `undefined` \| `string`
9+
> **getComponentNameFromId**(`id`): `string` \| `undefined`
1010
1111
## Parameters
1212

1313
### id
1414

15-
`undefined` | `Identifier` | `Identifier`[]
15+
`Identifier` | `Identifier`[] | `undefined`
1616

1717
## Returns
1818

19-
`undefined` \| `string`
19+
`string` \| `undefined`

packages/core/docs/functions/getFunctionComponentId.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# Function: getFunctionComponentId()
88

9-
> **getFunctionComponentId**(`context`, `node`): `undefined` \| `Identifier` \| `Identifier`[]
9+
> **getFunctionComponentId**(`context`, `node`): `Identifier` \| `Identifier`[] \| `undefined`
1010
1111
## Parameters
1212

@@ -20,4 +20,4 @@
2020

2121
## Returns
2222

23-
`undefined` \| `Identifier` \| `Identifier`[]
23+
`Identifier` \| `Identifier`[] \| `undefined`

packages/core/docs/functions/getJsxAttribute.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# Function: getJsxAttribute()
88

9-
> **getJsxAttribute**(`context`, `node`, `initialScope?`): (`name`) => `undefined` \| `JSXAttribute` \| `JSXSpreadAttribute`
9+
> **getJsxAttribute**(`context`, `node`, `initialScope?`): (`name`) => `JSXAttribute` \| `JSXSpreadAttribute` \| `undefined`
1010
1111
Get a function to find JSX attributes by name, considering direct attributes and spread attributes.
1212

@@ -34,7 +34,7 @@ Optional initial scope for variable resolution
3434

3535
A function that takes an attribute name and returns the corresponding JSX attribute node or undefined
3636

37-
> (`name`): `undefined` \| `JSXAttribute` \| `JSXSpreadAttribute`
37+
> (`name`): `JSXAttribute` \| `JSXSpreadAttribute` \| `undefined`
3838
3939
### Parameters
4040

@@ -44,4 +44,4 @@ A function that takes an attribute name and returns the corresponding JSX attrib
4444

4545
### Returns
4646

47-
`undefined` \| `JSXAttribute` \| `JSXSpreadAttribute`
47+
`JSXAttribute` \| `JSXSpreadAttribute` \| `undefined`

packages/core/docs/functions/getPhaseKindOfFunction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# Function: getPhaseKindOfFunction()
88

9-
> **getPhaseKindOfFunction**(`node`): `null` \| [`ComponentPhaseKind`](../type-aliases/ComponentPhaseKind.md)
9+
> **getPhaseKindOfFunction**(`node`): [`ComponentPhaseKind`](../type-aliases/ComponentPhaseKind.md) \| `null`
1010
1111
## Parameters
1212

@@ -16,4 +16,4 @@
1616

1717
## Returns
1818

19-
`null` \| [`ComponentPhaseKind`](../type-aliases/ComponentPhaseKind.md)
19+
[`ComponentPhaseKind`](../type-aliases/ComponentPhaseKind.md) \| `null`

packages/core/docs/functions/isFunctionOfUseEffectCleanup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
### node
1414

15-
`undefined` | `Node`
15+
`Node` | `undefined`
1616

1717
## Returns
1818

0 commit comments

Comments
 (0)