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
34 lines
1.6 KiB
TypeScript
34 lines
1.6 KiB
TypeScript
import { default as camelCase } from "./camelCase";
|
|
import { default as capitalize } from "./capitalize";
|
|
import { default as deburr } from "./deburr";
|
|
import { default as endsWith } from "./endsWith";
|
|
import { default as escape } from "./escape";
|
|
import { default as escapeRegExp } from "./escapeRegExp";
|
|
import { default as kebabCase } from "./kebabCase";
|
|
import { default as lowerCase } from "./lowerCase";
|
|
import { default as lowerFirst } from "./lowerFirst";
|
|
import { default as pad } from "./pad";
|
|
import { default as padEnd } from "./padEnd";
|
|
import { default as padStart } from "./padStart";
|
|
import { default as parseInt } from "./parseInt";
|
|
import { default as repeat } from "./repeat";
|
|
import { default as replace } from "./replace";
|
|
import { default as snakeCase } from "./snakeCase";
|
|
import { default as split } from "./split";
|
|
import { default as startCase } from "./startCase";
|
|
import { default as startsWith } from "./startsWith";
|
|
import { default as template } from "./template";
|
|
import { default as templateSettings } from "./templateSettings";
|
|
import { default as toLower } from "./toLower";
|
|
import { default as toUpper } from "./toUpper";
|
|
import { default as trim } from "./trim";
|
|
import { default as trimEnd } from "./trimEnd";
|
|
import { default as trimStart } from "./trimStart";
|
|
import { default as truncate } from "./truncate";
|
|
import { default as unescape } from "./unescape";
|
|
import { default as upperCase } from "./upperCase";
|
|
import { default as upperFirst } from "./upperFirst";
|
|
import { default as words } from "./words";
|
|
|
|
export { default } from "./string.default";
|