PDPA Features: ✅ Cookie consent banner ✅ Consent logging API ✅ Admin dashboard ✅ Privacy Policy ✅ Terms & Conditions Technical: ✅ Astro 5.x + Tailwind v4 ✅ Docker on port 80 ✅ SQLite database ✅ 15 pages built Ready for Easypanel deployment.
17 lines
513 B
TypeScript
17 lines
513 B
TypeScript
export declare const DEFAULT_PREFERENCES: {
|
|
devToolbar: {
|
|
/** Specifies whether the user has the Dev Overlay enabled */
|
|
enabled: boolean;
|
|
};
|
|
checkUpdates: {
|
|
/** Specifies whether the user has the update check enabled */
|
|
enabled: boolean;
|
|
};
|
|
_variables: {
|
|
/** Time since last update check */
|
|
lastUpdateCheck: number;
|
|
};
|
|
};
|
|
export type Preferences = typeof DEFAULT_PREFERENCES;
|
|
export type PublicPreferences = Omit<Preferences, '_variables'>;
|