constants.d.ts 503 B

12345678910111213
  1. export declare const S_IFMT = 61440;
  2. export declare const S_IFDIR = 16384;
  3. export declare const S_IFREG = 32768;
  4. export declare const S_IFLNK = 40960;
  5. /**
  6. * Unix timestamp for `1984-06-22T21:50:00.000Z`
  7. *
  8. * It needs to be after 1980-01-01 because that's what Zip supports, and it
  9. * needs to have a slight offset to account for different timezones (because
  10. * zip assumes that all times are local to whoever writes the file, which is
  11. * really silly).
  12. */
  13. export declare const SAFE_TIME = 456789000;