UNPKG

1.65 kBTypeScriptView Raw
1/// <amd-module name="@ngrx/router-store/schematics-core" />
2import { dasherize, decamelize, camelize, classify, underscore, group, capitalize, featurePath, pluralize } from './utility/strings';
3export { findNodes, getSourceNodes, getDecoratorMetadata, getContentOfKeyLiteral, insertAfterLastOccurrence, insertImport, addBootstrapToModule, addDeclarationToModule, addExportToModule, addImportToModule, addProviderToModule, replaceImport, } from './utility/ast-utils';
4export { Host, Change, NoopChange, InsertChange, RemoveChange, ReplaceChange, createReplaceChange, createChangeRecorder, commitChanges, } from './utility/change';
5export { AppConfig, getWorkspace, getWorkspacePath } from './utility/config';
6export { findModule, findModuleFromOptions, buildRelativePath, ModuleOptions, } from './utility/find-module';
7export { addReducerToState, addReducerToStateInterface, addReducerImportToNgModule, addReducerToActionReducerMap, omit, } from './utility/ngrx-utils';
8export { getProjectPath, getProject, isLib } from './utility/project';
9export declare const stringUtils: {
10 dasherize: typeof dasherize;
11 decamelize: typeof decamelize;
12 camelize: typeof camelize;
13 classify: typeof classify;
14 underscore: typeof underscore;
15 group: typeof group;
16 capitalize: typeof capitalize;
17 featurePath: typeof featurePath;
18 pluralize: typeof pluralize;
19};
20export { updatePackage } from './utility/update';
21export { parseName } from './utility/parse-name';
22export { addPackageToPackageJson } from './utility/package';
23export { platformVersion } from './utility/libs-version';
24export { visitTSSourceFiles } from './utility/visit-utils';