TenantAtlas/apps/platform/.pnpm-store/v10/files/29/1ec11e107163007eaca89098e6c75e77a6d52ea84e03dc76e506a55c12603a474af32077cb2fb4ea89bf7c92a5b0ca596fc3c2df16ef05c3e6333bb929497e
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
503 B
Plaintext

import type { Column } from "./column.cjs";
import { entityKind } from "./entity.cjs";
import type { Casing } from "./utils.cjs";
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;
}