- 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.
23 lines
823 B
TypeScript
23 lines
823 B
TypeScript
import { type Client, type Config } from '@libsql/client/node';
|
|
import { type DrizzleConfig } from "../../utils.cjs";
|
|
import { type LibSQLDatabase } from "../driver-core.cjs";
|
|
export declare function drizzle<TSchema extends Record<string, unknown> = Record<string, never>, TClient extends Client = Client>(...params: [
|
|
TClient | string
|
|
] | [
|
|
TClient | string,
|
|
DrizzleConfig<TSchema>
|
|
] | [
|
|
(DrizzleConfig<TSchema> & ({
|
|
connection: string | Config;
|
|
} | {
|
|
client: TClient;
|
|
}))
|
|
]): LibSQLDatabase<TSchema> & {
|
|
$client: TClient;
|
|
};
|
|
export declare namespace drizzle {
|
|
function mock<TSchema extends Record<string, unknown> = Record<string, never>>(config?: DrizzleConfig<TSchema>): LibSQLDatabase<TSchema> & {
|
|
$client: '$client is not available on drizzle.mock()';
|
|
};
|
|
}
|