UNPKG

dynamic-mat-table

Version:

dynamic-mat-table is an Angular component for presenting large and complex data with a lightning fast performance (at least 10x faster) and excellent level of control over the presentation.

17 lines (16 loc) 482 B
/** * Simplifies a string (trims and lowerCases) */ export declare function simplify(s: string): string; /** * Transforms a camelCase string into a readable text format * @example textify('helloWorld!') * // Hello world! */ export declare function textify(text: string): string; /** * Transforms a text string into a title case text format * @example titleCase('hello world!') * // Hello World! */ export declare function titleCase(value: string): string;