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.
13 lines
553 B
TypeScript
13 lines
553 B
TypeScript
export interface LocalStorageOptions {
|
|
base?: string;
|
|
window?: typeof window;
|
|
windowKey?: "localStorage" | "sessionStorage";
|
|
storage?: typeof window.localStorage | typeof window.sessionStorage;
|
|
/** @deprecated use `storage` option */
|
|
sessionStorage?: typeof window.sessionStorage;
|
|
/** @deprecated use `storage` option */
|
|
localStorage?: typeof window.localStorage;
|
|
}
|
|
declare const _default: (opts: LocalStorageOptions | undefined) => import("..").Driver<LocalStorageOptions | undefined, Storage>;
|
|
export default _default;
|