Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
22 lines
768 B
Plaintext
22 lines
768 B
Plaintext
/// <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 {}
|
|
}
|