6f3c542ca4ae599306491836ba3570478493a8d3a4e6e7703f694d7cae1bc952aec64c5768b37155a94aa05189e7d9cdca1fbb107d1d900d3246122d00458d 572 B

1234567891011121314151617181920212223
  1. import _ = require("../index");
  2. declare module "../index" {
  3. interface LoDashStatic {
  4. /*
  5. * Gets the number of milliseconds that have elapsed since the Unix epoch (1 January 1970 00:00:00 UTC).
  6. *
  7. * @return The number of milliseconds.
  8. */
  9. now(): number;
  10. }
  11. interface LoDashImplicitWrapper<TValue> {
  12. /**
  13. * @see _.now
  14. */
  15. now(): number;
  16. }
  17. interface LoDashExplicitWrapper<TValue> {
  18. /**
  19. * @see _.now
  20. */
  21. now(): PrimitiveChain<number>;
  22. }
  23. }