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