8 lines
295 B
TypeScript
8 lines
295 B
TypeScript
/**
|
|
* Detects the libc family on the current Linux host via `process.report`.
|
|
*
|
|
* Used to resolve the `{libc}` token in prebuilt binary path templates.
|
|
*
|
|
* @returns `'glibc'` | `'musl'` | `null` (non-Linux or unable to detect)
|
|
*/
|
|
export declare function detectLibcFamily(): string | null;
|