feat: Upgrade to Astro with full PDPA compliance
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.
This commit is contained in:
14
node_modules/oniguruma-parser/dist/parser/node-utils.d.ts
generated
vendored
Normal file
14
node_modules/oniguruma-parser/dist/parser/node-utils.d.ts
generated
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
import type { AlternativeContainerNode, Node, ParentNode, QuantifiableNode } from './parse.js';
|
||||
type KeysOfUnion<T> = T extends T ? keyof T : never;
|
||||
type Props = {
|
||||
[key in KeysOfUnion<Node>]?: any;
|
||||
} & {
|
||||
type?: Node['type'];
|
||||
};
|
||||
declare function hasOnlyChild(node: ParentNode & {
|
||||
body: Array<Node>;
|
||||
}, props?: Props): boolean;
|
||||
declare function isAlternativeContainer(node: Node): node is AlternativeContainerNode;
|
||||
declare function isQuantifiable(node: Node): node is QuantifiableNode;
|
||||
export { hasOnlyChild, isAlternativeContainer, isQuantifiable, };
|
||||
//# sourceMappingURL=node-utils.d.ts.map
|
||||
Reference in New Issue
Block a user