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.
13 lines
395 B
TypeScript
13 lines
395 B
TypeScript
/**
|
|
* @param {URL} url
|
|
* @param {{parentURL: string}} context
|
|
* @returns {string | null}
|
|
*/
|
|
export function defaultGetFormatWithoutErrors(url: URL, context: {
|
|
parentURL: string;
|
|
}): string | null;
|
|
export type ProtocolHandler = (parsed: URL, context: {
|
|
parentURL: string;
|
|
source?: Buffer;
|
|
}, ignoreErrors: boolean) => string | null | void;
|
|
//# sourceMappingURL=get-format.d.ts.map
|