diff --git a/lodash/lodash.d.ts b/lodash/lodash.d.ts index f90397a37..a4de09279 100644 --- a/lodash/lodash.d.ts +++ b/lodash/lodash.d.ts @@ -6201,6 +6201,14 @@ declare module _ { **/ uniqueId(prefix?: string): string; } + + //_.noop + interface LoDashStatic { + /** + * A no-operation function. + **/ + noop(): void; + } interface ListIterator { (value: T, index: number, list: T[]): TResult;