angular2
Version:
Angular 2 - a web framework for modern web apps
11 lines (10 loc) • 725 B
TypeScript
export declare var MODULE_SUFFIX: string;
export declare function camelCaseToDashCase(input: string): string;
export declare function dashCaseToCamelCase(input: string): string;
export declare function escapeSingleQuoteString(input: string): string;
export declare function escapeDoubleQuoteString(input: string): string;
export declare function codeGenExportVariable(name: string): string;
export declare function codeGenConstConstructorCall(name: string): string;
export declare function codeGenValueFn(params: string[], value: string, fnName?: string): string;
export declare function codeGenToString(expr: string): string;
export declare function splitAtColon(input: string, defaultValues: string[]): string[];