0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-02-03 22:29:08 -05:00

chore(config.d.ts): Update comment (#9076)

This commit is contained in:
Risu 2023-11-13 19:15:02 +09:00 committed by GitHub
parent c5dc8f2ec9
commit a7f8123ba4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,12 +16,12 @@ export function getViteConfig(config: ViteUserConfig): ViteUserConfigFn;
/** /**
* Return the configuration needed to use the Sharp-based image service * Return the configuration needed to use the Sharp-based image service
* See: https://docs.astro.build/en/guides/assets/#using-sharp
*/ */
export function sharpImageService(): ImageServiceConfig; export function sharpImageService(): ImageServiceConfig;
/** /**
* Return the configuration needed to use the Squoosh-based image service * Return the configuration needed to use the Squoosh-based image service
* See: https://docs.astro.build/en/guides/images/#configure-squoosh
*/ */
export function squooshImageService(): ImageServiceConfig; export function squooshImageService(): ImageServiceConfig;
@ -29,5 +29,6 @@ export function squooshImageService(): ImageServiceConfig;
* Return the configuration needed to use the passthrough image service. This image services does not perform * Return the configuration needed to use the passthrough image service. This image services does not perform
* any image transformations, and is mainly useful when your platform does not support other image services, or you are * any image transformations, and is mainly useful when your platform does not support other image services, or you are
* not using Astro's built-in image processing. * not using Astro's built-in image processing.
* See: https://docs.astro.build/en/guides/images/#configure-no-op-passthrough-service
*/ */
export function passthroughImageService(): ImageServiceConfig; export function passthroughImageService(): ImageServiceConfig;