25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

7 satır
193 B

  1. declare function realpath(filepath: string): string;
  2. declare namespace realpath {
  3. var sync: typeof realpathSync;
  4. }
  5. declare function realpathSync(filepath: string): string;
  6. export = realpath;