/
ai_sampletext
/
DiplomWork
Обзор
Документация
Войти
/
ai_sampletext
/
DiplomWork
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
node_modules/drizzle-orm/casing.d.cts
14 строк
503 B
boolyshareyo
Initial commit
08 июн 2026, 16:00
08 июн 2026, 16:00
6216a29
Код
Авторство
О чём код?
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; }