-
Notifications
You must be signed in to change notification settings - Fork 30.5k
Expand file tree
/
Copy pathindex.d.ts
More file actions
21 lines (19 loc) · 768 Bytes
/
index.d.ts
File metadata and controls
21 lines (19 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/// <reference path="./common/common.d.ts" />
/// <reference path="./common/array.d.ts" />
/// <reference path="./common/collection.d.ts" />
/// <reference path="./common/date.d.ts" />
/// <reference path="./common/function.d.ts" />
/// <reference path="./common/lang.d.ts" />
/// <reference path="./common/math.d.ts" />
/// <reference path="./common/number.d.ts" />
/// <reference path="./common/object.d.ts" />
/// <reference path="./common/seq.d.ts" />
/// <reference path="./common/string.d.ts" />
/// <reference path="./common/util.d.ts" />
export = _;
export as namespace _;
declare const _: _.LoDashStatic;
declare namespace _ {
// eslint-disable-next-line @typescript-eslint/no-empty-interface -- (This will be augmented)
interface LoDashStatic {}
}