版博士V2.0程序
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 

12 rader
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;