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
69 lines
2.0 KiB
TypeScript
69 lines
2.0 KiB
TypeScript
import attempt from "./attempt";
|
|
import bindAll from "./bindAll";
|
|
import cond from "./cond";
|
|
import conforms from "./conforms";
|
|
import constant from "./constant";
|
|
import defaultTo from "./defaultTo";
|
|
import flow from "./flow";
|
|
import flowRight from "./flowRight";
|
|
import identity from "./identity";
|
|
import iteratee from "./iteratee";
|
|
import matches from "./matches";
|
|
import matchesProperty from "./matchesProperty";
|
|
import method from "./method";
|
|
import methodOf from "./methodOf";
|
|
import mixin from "./mixin";
|
|
import noop from "./noop";
|
|
import nthArg from "./nthArg";
|
|
import over from "./over";
|
|
import overEvery from "./overEvery";
|
|
import overSome from "./overSome";
|
|
import property from "./property";
|
|
import propertyOf from "./propertyOf";
|
|
import range from "./range";
|
|
import rangeRight from "./rangeRight";
|
|
import stubArray from "./stubArray";
|
|
import stubFalse from "./stubFalse";
|
|
import stubObject from "./stubObject";
|
|
import stubString from "./stubString";
|
|
import stubTrue from "./stubTrue";
|
|
import times from "./times";
|
|
import toPath from "./toPath";
|
|
import uniqueId from "./uniqueId";
|
|
|
|
declare const defaultExport: {
|
|
attempt: typeof attempt;
|
|
bindAll: typeof bindAll;
|
|
cond: typeof cond;
|
|
conforms: typeof conforms;
|
|
constant: typeof constant;
|
|
defaultTo: typeof defaultTo;
|
|
flow: typeof flow;
|
|
flowRight: typeof flowRight;
|
|
identity: typeof identity;
|
|
iteratee: typeof iteratee;
|
|
matches: typeof matches;
|
|
matchesProperty: typeof matchesProperty;
|
|
method: typeof method;
|
|
methodOf: typeof methodOf;
|
|
mixin: typeof mixin;
|
|
noop: typeof noop;
|
|
nthArg: typeof nthArg;
|
|
over: typeof over;
|
|
overEvery: typeof overEvery;
|
|
overSome: typeof overSome;
|
|
property: typeof property;
|
|
propertyOf: typeof propertyOf;
|
|
range: typeof range;
|
|
rangeRight: typeof rangeRight;
|
|
stubArray: typeof stubArray;
|
|
stubFalse: typeof stubFalse;
|
|
stubObject: typeof stubObject;
|
|
stubString: typeof stubString;
|
|
stubTrue: typeof stubTrue;
|
|
times: typeof times;
|
|
toPath: typeof toPath;
|
|
uniqueId: typeof uniqueId;
|
|
};
|
|
export default defaultExport;
|