This is an automated email from the ASF dual-hosted git repository. ocket8888 pushed a commit to branch 3.x in repository https://gitbox.apache.org/repos/asf/trafficcontrol-trafficops-types.git
commit 7951239811df888bf10d67587f2e4cfeefc0a93e Author: ocket8888 <[email protected]> AuthorDate: Mon Jan 30 09:15:04 2023 -0700 Fix inconsistent server interface typing (cherry picked from commit 60952f644b7933a1ce28447b7cd18c07d9809ae7) --- src/server.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/server.ts b/src/server.ts index 8ec04f9..30b94c9 100644 --- a/src/server.ts +++ b/src/server.ts @@ -308,7 +308,7 @@ export interface RequestServer { /** The Server's ILO interface's root user's name. */ iloUsername?: string | null; /** The Server's network interfaces. */ - interfaces: [Interface, ...Interface[]]; + interfaces: Array<Interface>; /** The IP address of the server's management interface. */ mgmtIpAddress?: string | null; /** The IP address of the gateway to the Server's management interface. */ @@ -479,7 +479,7 @@ export interface ResponseServercheckExtension { export type ServercheckExtension = RequestServercheckExtension | ResponseServercheckExtension; /** - * @deprecated This gives no useful information that an {@link Server} doesn't, + * @deprecated This gives no useful information that a {@link Server} doesn't, * so there's no reason to use it. */ export interface ServerDetails {
