AAE-29442 moving to node 20.18.1 (#10500)

* AAE-0000 - moving to node 20.18.1

* AAE-29442 Adjusted to the new eslint rule
This commit is contained in:
Vito Albano
2024-12-18 11:14:52 +00:00
committed by GitHub
parent dd44e492b7
commit 872fb16b62
144 changed files with 5267 additions and 6842 deletions

View File

@@ -21,4 +21,4 @@ import { PathElement } from '../../content-rest-api';
* An ordered list of ancestors starting with the classification guide and ending with the parent of this topic.
* This field is only returned when requested.
*/
export interface Path extends Array<PathElement> {}
export type Path = Array<PathElement>;

View File

@@ -17,4 +17,4 @@
import { SecurityMark } from './securityMark';
export interface SecurityMarks extends Array<SecurityMark> {}
export type SecurityMarks = Array<SecurityMark>;

View File

@@ -17,4 +17,4 @@
import { SecurityMarkBody } from './securityMarkBody';
export interface SecurityMarksBody extends Array<SecurityMarkBody> {}
export type SecurityMarksBody = Array<SecurityMarkBody>;