UNPKG

snowflake-sdk

Version:
10 lines (9 loc) 269 B
declare const GLIBC = "glibc"; declare const MUSL = "musl"; export type LibcFamily = typeof GLIBC | typeof MUSL; export type LibcDetails = { family: LibcFamily | null; version: string | null; }; export declare function getLibcDetails(): LibcDetails; export {};