@oxlint/plugins 1.71.0 → 1.73.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +4 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -509,7 +509,7 @@ interface BindingIdentifier extends Span {
|
|
|
509
509
|
decorators?: [];
|
|
510
510
|
name: string;
|
|
511
511
|
optional?: false;
|
|
512
|
-
typeAnnotation?: null;
|
|
512
|
+
typeAnnotation?: TSTypeAnnotation | null;
|
|
513
513
|
parent: Node$1;
|
|
514
514
|
}
|
|
515
515
|
interface LabelIdentifier extends Span {
|
|
@@ -922,7 +922,7 @@ interface ObjectPattern extends Span {
|
|
|
922
922
|
decorators?: [];
|
|
923
923
|
properties: Array<BindingProperty | BindingRestElement>;
|
|
924
924
|
optional?: false;
|
|
925
|
-
typeAnnotation?: null;
|
|
925
|
+
typeAnnotation?: TSTypeAnnotation | null;
|
|
926
926
|
parent: Node$1;
|
|
927
927
|
}
|
|
928
928
|
interface BindingProperty extends Span {
|
|
@@ -941,7 +941,7 @@ interface ArrayPattern extends Span {
|
|
|
941
941
|
decorators?: [];
|
|
942
942
|
elements: Array<BindingPattern | BindingRestElement | null>;
|
|
943
943
|
optional?: false;
|
|
944
|
-
typeAnnotation?: null;
|
|
944
|
+
typeAnnotation?: TSTypeAnnotation | null;
|
|
945
945
|
parent: Node$1;
|
|
946
946
|
}
|
|
947
947
|
interface BindingRestElement extends Span {
|
|
@@ -949,7 +949,7 @@ interface BindingRestElement extends Span {
|
|
|
949
949
|
decorators?: [];
|
|
950
950
|
argument: BindingPattern;
|
|
951
951
|
optional?: false;
|
|
952
|
-
typeAnnotation?: null;
|
|
952
|
+
typeAnnotation?: TSTypeAnnotation | null;
|
|
953
953
|
value?: null;
|
|
954
954
|
parent: Node$1;
|
|
955
955
|
}
|