import _ = require("../index"); declare module "../index" { interface LoDashStatic { /** * Computes the minimum value of `array`. If `array` is empty or falsey * `undefined` is returned. * * @category Math * @param array The array to iterate over. * @returns Returns the minimum value. */ min( collection: List | null | undefined ): T | undefined; } interface LoDashImplicitWrapper { /** * @see _.min */ min(this: LoDashImplicitWrapper | null | undefined>): T | undefined; } interface LoDashExplicitWrapper { /** * @see _.min */ min(this: LoDashExplicitWrapper | null | undefined>): LoDashExplicitWrapper; } }