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.
11 lines
342 B
TypeScript
11 lines
342 B
TypeScript
import type { OnigurumaAst } from '../parser/parse.js';
|
|
type OnigurumaRegex = {
|
|
pattern: string;
|
|
flags: string;
|
|
};
|
|
/**
|
|
Generates an Oniguruma `pattern` and `flags` from an `OnigurumaAst`.
|
|
*/
|
|
declare function generate(ast: OnigurumaAst): OnigurumaRegex;
|
|
export { type OnigurumaRegex, generate, };
|
|
//# sourceMappingURL=generate.d.ts.map
|