TenantAtlas/apps/platform/.pnpm-store/v10/files/f9/3637c53991b2295f35f9ff5d27906fbf85f7ead0740876bc56f60d6236cfbfc5d5c49076c44a7954f776b54d2d4f5181b2cb743b3b56907ccf76559b2c08c4
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

15 lines
500 B
Plaintext

import type { Column } from "./column.js";
import { entityKind } from "./entity.js";
import type { Casing } from "./utils.js";
export declare function toSnakeCase(input: string): string;
export declare function toCamelCase(input: string): string;
export declare class CasingCache {
static readonly [entityKind]: string;
private cachedTables;
private convert;
constructor(casing?: Casing);
getColumnCasing(column: Column): string;
private cacheTable;
clearCache(): void;
}