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
388 B
TypeScript
15 lines
388 B
TypeScript
/**
|
|
* Turn an mdast `table` node into hast.
|
|
*
|
|
* @param {State} state
|
|
* Info passed around.
|
|
* @param {Table} node
|
|
* mdast node.
|
|
* @returns {Element}
|
|
* hast node.
|
|
*/
|
|
export function table(state: State, node: Table): Element;
|
|
import type { State } from '../state.js';
|
|
import type { Table } from 'mdast';
|
|
import type { Element } from 'hast';
|
|
//# sourceMappingURL=table.d.ts.map
|