- Admin dashboard (/admin/consent-logs) with password auth - Consent API (/api/consent) with SQLite + IP hashing - Privacy Policy (Thai) - PDPA Section 36 compliant - Terms & Conditions (Thai) - 9 standard clauses - .env.example template with Umami placeholder All pages preserve current design system.
15 lines
503 B
TypeScript
15 lines
503 B
TypeScript
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;
|
|
}
|