dff-util
Version:
DesignForFeature Utilities
9 lines (8 loc) • 461 B
TypeScript
export declare function toCamelCase(str: string): string;
export declare function toSnakeCase(str: string): string;
export declare function toPascalCase(str: string): string;
export declare function toUpperCase(str: string): string;
export declare function toLowerCase(str: string): string;
export declare function toViewMapper(obj: any): any;
export declare function toEntityMapper<T = any>(obj: T): any;
export declare function toSchemaMapper(obj: any): any;