jw-ng-forward
Version:
Temporary package. The default solution for those that want to write Angular 2.x style code in Angular 1.x
11 lines (10 loc) • 513 B
TypeScript
import { IModule } from 'angular';
export declare function ucFirst(word: string): string;
export declare function dashToCamel(dash: string): string;
export declare function dasherize(name: string, separator?: string): string;
export declare function snakeCase(name: string, separator?: string): string;
export declare function flatten(items: any[]): any[];
export interface INamed {
name: string;
}
export declare function createConfigErrorMessage(target: INamed, ngModule: IModule, message: string): string;