UNPKG

f5-conx-core

Version:

F5 SDK for JavaScript with Typescript type definitions

14 lines (13 loc) 381 B
export type DetectNext = { product: 'NEXT' | 'NEXT-CM'; status: number; statusText: string; code?: string; detail?: string; message?: string; }; /** * Discover if host is next or next-cm by trying to authenticate and analyzing failure messages * @param host hostname/fqdn/IP */ export declare function detectNextAsync(host: string): Promise<DetectNext>;