- Migrated all pages from Next.js to Astro - Added PDPA-compliant Privacy Policy (Thai) - Added PDPA-compliant Terms & Conditions (Thai) - Added Cookie Policy with disclosure (Thai) - Implemented cookie consent banner (client-side) - Integrated Umami Analytics placeholder - Blog system with 3 posts - Optimized Docker configuration for production - Static site build (184KB, 11 pages) - Ready for Easypanel deployment Backup: /Users/kunthawatgreethong/Gitea/dealplustech-backup-nextjs-20260309.tar.gz
15 lines
500 B
TypeScript
15 lines
500 B
TypeScript
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;
|
|
}
|