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
538 B
TypeScript
17 lines
538 B
TypeScript
/**
|
|
* @import {Info, State} from 'mdast-util-to-markdown'
|
|
* @import {Parents, Text} from 'mdast'
|
|
*/
|
|
/**
|
|
* @param {Text} node
|
|
* @param {Parents | undefined} _
|
|
* @param {State} state
|
|
* @param {Info} info
|
|
* @returns {string}
|
|
*/
|
|
export function text(node: Text, _: Parents | undefined, state: State, info: Info): string;
|
|
import type { Text } from 'mdast';
|
|
import type { Parents } from 'mdast';
|
|
import type { State } from 'mdast-util-to-markdown';
|
|
import type { Info } from 'mdast-util-to-markdown';
|
|
//# sourceMappingURL=text.d.ts.map
|