UNPKG

refql

Version:

A Node.js and Deno library for composing and running SQL queries.

7 lines (6 loc) 340 B
import { Casing } from "./types"; export declare function toCamelCase(str: string): string; export declare function toPascalCase(str: string): string; export declare function toSnakeCase(str: string): string; export declare function toKebabCase(str: string): string; export declare function getCasingFn(casing: Casing): typeof toCamelCase;