mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* chore(generation): add script to generate typings automatically * docs: add a readme.md to state unfinished types * fix: improve generation and tsconfig files * chore(generate): add prettier to format generated code * feat(lodash-es): generate files and remove codes 1. noconflict and runincontext aren't inside lodash-es 2. seq-like function are removed temporarily. see readme.md * feat(lodash): add a bash script to generate all modules and remove lodash-es related code in lodash/scripts * fix(lodash-es): apply the new approach to declare types for default export constraints in typescript v2.6 see https://github.com/Microsoft/TypeScript/wiki/Breaking-Changes#arbitrary-expressions-are-forbidden-in-export-assignments-in-ambient-contexts
26 lines
1.1 KiB
TypeScript
26 lines
1.1 KiB
TypeScript
import { default as after } from "./after";
|
|
import { default as ary } from "./ary";
|
|
import { default as before } from "./before";
|
|
import { default as bind } from "./bind";
|
|
import { default as bindKey } from "./bindKey";
|
|
import { default as curry } from "./curry";
|
|
import { default as curryRight } from "./curryRight";
|
|
import { default as debounce } from "./debounce";
|
|
import { default as defer } from "./defer";
|
|
import { default as delay } from "./delay";
|
|
import { default as flip } from "./flip";
|
|
import { default as memoize } from "./memoize";
|
|
import { default as negate } from "./negate";
|
|
import { default as once } from "./once";
|
|
import { default as overArgs } from "./overArgs";
|
|
import { default as partial } from "./partial";
|
|
import { default as partialRight } from "./partialRight";
|
|
import { default as rearg } from "./rearg";
|
|
import { default as rest } from "./rest";
|
|
import { default as spread } from "./spread";
|
|
import { default as throttle } from "./throttle";
|
|
import { default as unary } from "./unary";
|
|
import { default as wrap } from "./wrap";
|
|
|
|
export { default } from "./function.default";
|