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
51 lines
1.3 KiB
TypeScript
51 lines
1.3 KiB
TypeScript
import after from "./after";
|
|
import ary from "./ary";
|
|
import before from "./before";
|
|
import bind from "./bind";
|
|
import bindKey from "./bindKey";
|
|
import curry from "./curry";
|
|
import curryRight from "./curryRight";
|
|
import debounce from "./debounce";
|
|
import defer from "./defer";
|
|
import delay from "./delay";
|
|
import flip from "./flip";
|
|
import memoize from "./memoize";
|
|
import negate from "./negate";
|
|
import once from "./once";
|
|
import overArgs from "./overArgs";
|
|
import partial from "./partial";
|
|
import partialRight from "./partialRight";
|
|
import rearg from "./rearg";
|
|
import rest from "./rest";
|
|
import spread from "./spread";
|
|
import throttle from "./throttle";
|
|
import unary from "./unary";
|
|
import wrap from "./wrap";
|
|
|
|
declare const defaultExport: {
|
|
after: typeof after;
|
|
ary: typeof ary;
|
|
before: typeof before;
|
|
bind: typeof bind;
|
|
bindKey: typeof bindKey;
|
|
curry: typeof curry;
|
|
curryRight: typeof curryRight;
|
|
debounce: typeof debounce;
|
|
defer: typeof defer;
|
|
delay: typeof delay;
|
|
flip: typeof flip;
|
|
memoize: typeof memoize;
|
|
negate: typeof negate;
|
|
once: typeof once;
|
|
overArgs: typeof overArgs;
|
|
partial: typeof partial;
|
|
partialRight: typeof partialRight;
|
|
rearg: typeof rearg;
|
|
rest: typeof rest;
|
|
spread: typeof spread;
|
|
throttle: typeof throttle;
|
|
unary: typeof unary;
|
|
wrap: typeof wrap;
|
|
};
|
|
export default defaultExport;
|