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.
15 lines
353 B
TypeScript
15 lines
353 B
TypeScript
type ModeWriter = (doc: Doc, modes: {
|
|
execution: "sync" | "async";
|
|
}) => void;
|
|
export declare class Doc {
|
|
args: string[];
|
|
content: string[];
|
|
indent: number;
|
|
constructor(args?: string[]);
|
|
indented(fn: (doc: Doc) => void): void;
|
|
write(fn: ModeWriter): void;
|
|
write(line: string): void;
|
|
compile(): Function;
|
|
}
|
|
export {};
|