Files
dealplustech/node_modules/astro/dist/assets/utils/index.d.ts
Kunthawat 77ac4d2d05 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.
2026-03-12 10:01:04 +07:00

18 lines
809 B
TypeScript

/**
* NOTE: this is a public module exposed to the user, so all functions exposed
* here must be documented via JsDoc and in the docs website.
*
* If some functions don't need to be exposed, just import the file that contains the functions.
*/
export { isRemoteAllowed, matchHostname, matchPathname, matchPattern, matchPort, matchProtocol, type RemotePattern, } from '@astrojs/internal-helpers/remote';
export { isESMImportedImage, isRemoteImage, resolveSrc } from './imageKind.js';
export { imageMetadata } from './metadata.js';
export {
/**
* @deprecated
*/
emitESMImage, emitImageMetadata, } from './node/emitAsset.js';
export { getOrigQueryParams } from './queryParams.js';
export { inferRemoteSize } from './remoteProbe.js';
export { hashTransform, propsToFilename } from './transformToPath.js';