版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

12 lines
352 B

  1. export const GLIBC: 'glibc';
  2. export const MUSL: 'musl';
  3. export function family(): Promise<string | null>;
  4. export function familySync(): string | null;
  5. export function isNonGlibcLinux(): Promise<boolean>;
  6. export function isNonGlibcLinuxSync(): boolean;
  7. export function version(): Promise<string | null>;
  8. export function versionSync(): string | null;