UNPKG

572 BTypeScriptView Raw
1import _ = require("../index");
2declare 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}